mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Optional automatic sensor limits (#9973)
* Automatic sensor limits are now optional. Set ['discovery']['sensors']['autolimit'] = false to disable. * Changing new config variable name from discovery.sensors.autolimit to sensors.guess_limits * Updated documentation: ['sensors']['guess_limits'] value added
This commit is contained in:
committed by
PipoCanaja
parent
6f8311369c
commit
d15fda3693
@@ -580,6 +580,17 @@ $config['bad_entity_sensor_regex'][] = '/Physical id [0-9]+/';
|
||||
$config['os']['cisco']['bad_entity_sensor_regex'] = '/Physical id [0-9]+/';
|
||||
```
|
||||
|
||||
### Entity sensors limit values
|
||||
|
||||
Vendors may give some limit values (or thresholds) for the discovered sensors. By default, when no such value is given,
|
||||
both high and low limit values are guessed, based on the value measured during the initial discovery.
|
||||
|
||||
When it is preferred to have no high and/or low limit values at all if these are not provided by the vendor, the guess
|
||||
method can be disabled:
|
||||
```php
|
||||
$config['sensors']['guess_limits'] = false;
|
||||
```
|
||||
|
||||
### Storage configuration
|
||||
|
||||
```php
|
||||
|
Reference in New Issue
Block a user