docs: document discovery and poller module enable/disable (#7505)

This commit is contained in:
Tony Murray
2017-10-21 17:51:28 -05:00
committed by Neil Lathwood
parent 0f8966a564
commit 1f7274d371
2 changed files with 20 additions and 0 deletions

View File

@@ -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)

View File

@@ -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