forked from Centreon-Community/centreon-newtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
centreon_newtestd-conf.pm
27 lines (25 loc) · 2.15 KB
/
centreon_newtestd-conf.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
%centreon_newtestd_config = (
1 => { date => '* * * * *', arguments => {
nmc_endpoint => 'http://192.168.6.84/nws/managementconsoleservice.asmx',
timeout => 10,
host_template => 'generic-active-host', host_prefix => 'Robot-%s',
service_template => 'generic-passive-service', service_prefix => 'Scenario-%s',
poller_name => 'Central',
clapi_command => '/usr/share/centreon/www/modules/centreon-clapi/core/centreon',
clapi_username => 'admin', clapi_password => 'centreon',
clapi_action_applycfg => 'POLLERRELOAD',
ListScenarioStatus => { search => 'All', instances => [] }
} },
2 => { date => '* * * * *', arguments => {
nmc_endpoint => 'http://192.168.6.8/nws/managementconsoleservice.asmx',
timeout => 10,
host_template => 'generic-active-host', host_prefix => 'Robot-%s',
service_template => 'generic-passive-service', service_prefix => 'Scenario-%s',
poller_name => 'Central',
clapi_command => '/usr/share/centreon/www/modules/centreon-clapi/core/centreon',
clapi_username => 'admin', clapi_password => 'centreon',
clapi_action_applycfg => 'POLLERRELOAD',
ListScenarioStatus => { search => 'Robot', instances => ['OSLO'] }
} },
);
1;