mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
docs: document discovery and poller module enable/disable (#7505)
This commit is contained in:
committed by
Neil Lathwood
parent
0f8966a564
commit
1f7274d371
@@ -41,6 +41,18 @@ To disable snmpbulkwalk and only use snmpwalk for an os set the following.
|
||||
nobulk: true
|
||||
```
|
||||
|
||||
### Poller and Discovery Modules
|
||||
The various discovery and poller modules can be enabled or disabled per OS. The defaults are usually reasonable, so likely you won't want to change more than a few.
|
||||
These modules can be enabled or disabled per-device in the webui and per os or globally in config.php.
|
||||
Usually, a poller module will not work if it's corresponding discovery module is not enabled.
|
||||
|
||||
```yaml
|
||||
poller_modules:
|
||||
bgp-peers: 1
|
||||
discovery_modules:
|
||||
arp-table: 0
|
||||
```
|
||||
|
||||
### Storage Settings
|
||||
See also: [Global Storage Config](../../Support/Configuration.md#storage-configuration)
|
||||
|
||||
|
@@ -312,6 +312,14 @@ By default we allow hosts to be added with duplicate sysName's, you can disable
|
||||
$config['allow_duplicate_sysName'] = false;
|
||||
```
|
||||
|
||||
### Global poller and discovery modules
|
||||
Generally, it is a better to set these [per OS](../Developing/os/Settings.md#poller-and-discovery-modules) or device.
|
||||
|
||||
```php
|
||||
$config['discovery_modules]['arp-table'] = 1;
|
||||
$config['poller_modules]['bgp-peers'] = 0;
|
||||
```
|
||||
|
||||
### SNMP Settings
|
||||
|
||||
```php
|
||||
|
Reference in New Issue
Block a user