Adds Distributed Polling via Memcached.

This commit is contained in:
f0o
2015-03-15 16:29:59 +00:00
parent fe06a0a443
commit ffd5a3d928
5 changed files with 199 additions and 15 deletions

View File

@@ -589,4 +589,11 @@ $config['enable_clear_discovery'] = 1;// Set this to 0 if
$config['enable_footer'] = 1;// Set this to 0 if you want to disable the footer copyright in the web interface
$config['api_demo'] = 0;// Set this to 1 if you want to disable some untrusting features for the API
// Distributed Poller-Settings
$config['distributed_poller'] = false;
$config['distributed_poller_name'] = file_get_contents('/proc/sys/kernel/hostname');
$config['distributed_poller_group'] = 0;
$config['distributed_poller_memcached_host'] = 'example.net';
$config['distributed_poller_memcached_port'] = '11211';
?>