Fix ignore check for F5 component polling and Web UI (#16329)

* Update f5-ltm.inc.php

Remove filter for ignore = 0

* Update f5-ltm-currconns.inc.php

Remove filter for ignore = 0

* Update f5-gtm.inc.php

Remove filter for ignore = 0

* Update ltm_vs.inc.php

Change component filter from 'ignore' to 'disabled'

* Update ltm_pool.inc.php

Change component filter from 'ignore' to 'disabled'

* Update ltm_bwc.inc.php

Change component filter from 'ignore' to 'disabled'

* Update gtm_wide.inc.php

Change component filter from 'ignore' to 'disabled'

* Update f5-cert.inc.php

Change component filter from 'ignore' to 'disabled'

* Update gtm_pool.inc.php

Change component filter from 'ignore' to 'disabled'
This commit is contained in:
Andy Norwood 2024-09-06 16:50:13 +01:00 committed by GitHub
parent 0b9312a77a
commit 0ae58d1883
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 6 additions and 9 deletions

View File

@ -12,7 +12,7 @@
*/
$component = new LibreNMS\Component();
$components = $component->getComponents($device['device_id'], ['filter' => ['ignore' => ['=', 0]]]);
$components = $component->getComponents($device['device_id'], ['filter' => ['disabled' => ['=', 0]]]);
// We only care about our device id.
$components = $components[$device['device_id']];

View File

@ -13,7 +13,7 @@
*/
$component = new LibreNMS\Component();
$components = $component->getComponents($device['device_id'], ['filter' => ['ignore' => ['=', 0]]]);
$components = $component->getComponents($device['device_id'], ['filter' => ['disabled' => ['=', 0]]]);
// We only care about our device id.
$components = $components[$device['device_id']];

View File

@ -13,7 +13,7 @@
*/
$component = new LibreNMS\Component();
$components = $component->getComponents($device['device_id'], ['filter' => ['ignore' => ['=', 0]]]);
$components = $component->getComponents($device['device_id'], ['filter' => ['disabled' => ['=', 0]]]);
// We only care about our device id.
$components = $components[$device['device_id']];

View File

@ -12,7 +12,7 @@
*/
$component = new LibreNMS\Component();
$components = $component->getComponents($device['device_id'], ['filter' => ['ignore' => ['=', 0]]]);
$components = $component->getComponents($device['device_id'], ['filter' => ['disabled' => ['=', 0]]]);
// We only care about our device id.
$components = $components[$device['device_id']];

View File

@ -12,7 +12,7 @@
*/
$component = new LibreNMS\Component();
$components = $component->getComponents($device['device_id'], ['filter' => ['ignore' => ['=', 0]]]);
$components = $component->getComponents($device['device_id'], ['filter' => ['disabled' => ['=', 0]]]);
// We only care about our device id.
$components = $components[$device['device_id']];

View File

@ -12,7 +12,7 @@
*/
$component = new LibreNMS\Component();
$components = $component->getComponents($device['device_id'], ['filter' => ['ignore' => ['=', 0]]]);
$components = $component->getComponents($device['device_id'], ['filter' => ['disabled' => ['=', 0]]]);
// We only care about our device id.
$components = $components[$device['device_id']];

View File

@ -26,7 +26,6 @@ $error_poolaction[6] = 'None';
$component = new LibreNMS\Component();
$options['filter']['disabled'] = ['=', 0];
$options['filter']['ignore'] = ['=', 0];
$components = $component->getComponents($device['device_id'], $options);
// We only care about our device id.

View File

@ -25,7 +25,6 @@ $error_poolaction[6] = 'None';
$component = new LibreNMS\Component();
$options['filter']['disabled'] = ['=', 0];
$options['filter']['ignore'] = ['=', 0];
$components = $component->getComponents($device['device_id'], $options);
// We only care about our device id.

View File

@ -25,7 +25,6 @@ $error_poolaction[6] = 'None';
$component = new LibreNMS\Component();
$options['filter']['disabled'] = ['=', 0];
$options['filter']['ignore'] = ['=', 0];
$components = $component->getComponents($device['device_id'], $options);
// We only care about our device id.