Hi,
Any one kindly help me out to collect 'Used Reservation' of CPU & Memory of cluster with below vCenter API's
box293_check_vmware / check_vmware_api => 'Used Reservation'
box293_check_vmware / check_vmware_api => 'Used Reservation'
box293_check_vmware / check_vmware_api => 'Used Reservation'
You do not have the required permissions to view the files attached to this post.
- Box293
- Too Basu
- Posts: 5126
- Joined: Sun Feb 07, 2010 10:55 pm
- Location: Deniliquin, Australia
- Contact:
Re: box293_check_vmware / check_vmware_api => 'Used Reservat
I am the author of the plugin.
Currently the plugin does not have this capability however I've added it to my to-do list as a feature request.
Currently the plugin does not have this capability however I've added it to my to-do list as a feature request.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Re: box293_check_vmware / check_vmware_api => 'Used Reservat
Thanks for your quick response sir
I collected total reserved capacity some how like...
my $cluster_view = Vim::find_entity_views(view_type => 'ClusterComputeResource', filter => { name => "$cluster" }, properties => [ 'summary' ]);
# Total Reservation Capacities
my $effectiveCpu = $$cluster_view[0]->summary->effectiveCpu;
my $effectiveMemory = $$cluster_view[0]->summary->effectiveMemory;
If you don't mind. I really appreciate if you suggest me which views will give me the Used Reservation...
I collected total reserved capacity some how like...
my $cluster_view = Vim::find_entity_views(view_type => 'ClusterComputeResource', filter => { name => "$cluster" }, properties => [ 'summary' ]);
# Total Reservation Capacities
my $effectiveCpu = $$cluster_view[0]->summary->effectiveCpu;
my $effectiveMemory = $$cluster_view[0]->summary->effectiveMemory;
If you don't mind. I really appreciate if you suggest me which views will give me the Used Reservation...
- Box293
- Too Basu
- Posts: 5126
- Joined: Sun Feb 07, 2010 10:55 pm
- Location: Deniliquin, Australia
- Contact:
Re: box293_check_vmware / check_vmware_api => 'Used Reservat
I don't know sorry, it will take research time which I don't have much of at the moment.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.