X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fapcups.c;h=2d1c16bb2424e3aaea49653fc4aba02da700323c;hb=b81104a423234c04f0eb4ace0ec5e93a363c917a;hp=591f6acd652b092db8a9332acb868d91d5e2f08a;hpb=1e9a54ced9f7f7ae8a3565fc6799ac5ca76ac544;p=collectd.git diff --git a/src/apcups.c b/src/apcups.c index 591f6acd..2d1c16bb 100644 --- a/src/apcups.c +++ b/src/apcups.c @@ -40,6 +40,10 @@ # include #endif +#ifndef APCUPS_SERVER_TIMEOUT +# define APCUPS_SERVER_TIMEOUT 15.0 +#endif + #ifndef APCUPS_DEFAULT_NODE # define APCUPS_DEFAULT_NODE "localhost" #endif @@ -400,11 +404,11 @@ static int apcups_config (oconfig_item_t *ci) if (!persistent_conn_set) { double interval = CDTIME_T_TO_DOUBLE(plugin_get_interval()); - if (interval > 15.0) { + if (interval > APCUPS_SERVER_TIMEOUT) { NOTICE ("apcups plugin: Plugin poll interval set to %.3f seconds. " - "Apcupsd NIS socket timeout is 15 seconds, " + "Apcupsd NIS socket timeout is %.3f seconds, " "PersistentConnection disabled by default.", - interval); + interval, APCUPS_SERVER_TIMEOUT); conf_persistent_conn = 0; } }