box293_check_vmware / check_vmware_api => 'Used Reservation'

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
asharma1
Posts: 2
Joined: Mon Nov 12, 2018 11:32 pm

box293_check_vmware / check_vmware_api => 'Used Reservation'

Post by asharma1 »

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'
You do not have the required permissions to view the files attached to this post.
User avatar
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

Post by Box293 »

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.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
asharma1
Posts: 2
Joined: Mon Nov 12, 2018 11:32 pm

Re: box293_check_vmware / check_vmware_api => 'Used Reservat

Post by asharma1 »

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...
User avatar
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

Post by Box293 »

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.
Locked