handle esx without cluster
This commit is contained in:
parent
11d14aaccd
commit
4ec0b5677d
|
@ -100,7 +100,9 @@ sub run {
|
||||||
foreach my $child (@{$childs}) {
|
foreach my $child (@{$childs}) {
|
||||||
next if (!$child->childEntity);
|
next if (!$child->childEntity);
|
||||||
my %types = map { $_ => 1 } @{$child->childType};
|
my %types = map { $_ => 1 } @{$child->childType};
|
||||||
next if (!defined($types{ComputeResource}));
|
my %entities = map { $_->type => 1 } @{$child->childEntity};
|
||||||
|
next if (!defined($types{ComputeResource}) || (!defined($entities{ClusterComputeResource}) &&
|
||||||
|
!defined($entities{ComputeResource})));
|
||||||
my @properties = ('name', 'host');
|
my @properties = ('name', 'host');
|
||||||
|
|
||||||
my $clusters = centreon::vmware::common::get_views($self->{connector}, \@{$child->childEntity}, \@properties);
|
my $clusters = centreon::vmware::common::get_views($self->{connector}, \@{$child->childEntity}, \@properties);
|
||||||
|
|
Loading…
Reference in New Issue