Closed ghost closed 12 years ago
Hi,
if the status of a cluster is 'green' then a UNKNOWN status will be returned.
On line 145 and some other lines a "exists" or "defined" or something else is missed.
As example:
if ( $statusCodesMap{$obj->{status}} ) {
Should be:
if ( defined $statusCodesMap{$obj->{status}} ) {
Cheers, Jonny
Thanks will have a look into it.
Thanks Jonny - fixed in commit https://github.com/rbramley/Opsview-elasticsearch/commit/a60bd426cd1a600748e478c54739b8e47f48d046
Hi,
if the status of a cluster is 'green' then a UNKNOWN status will be returned.
On line 145 and some other lines a "exists" or "defined" or something else is missed.
As example:
if ( $statusCodesMap{$obj->{status}} ) {
Should be:
if ( defined $statusCodesMap{$obj->{status}} ) {
Cheers, Jonny