X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Frrdcached.c;h=0a9803599520425bd3c640abf5ec1141939379e2;hb=7285e5f59ffa4efb391485fe9b35ee02f3dc856f;hp=8dd636c2f1987440159ad92f6c03cec30afcc754;hpb=a23f5e30270016b7d0eefc340c96081f3e9dd029;p=collectd.git diff --git a/src/rrdcached.c b/src/rrdcached.c index 8dd636c2..0a980359 100644 --- a/src/rrdcached.c +++ b/src/rrdcached.c @@ -46,7 +46,9 @@ static rrdcreate_config_t rrdcreate_config = /* timespans_num = */ 0, /* consolidation_functions = */ NULL, - /* consolidation_functions_num = */ 0 + /* consolidation_functions_num = */ 0, + + /* async = */ 0 }; /* @@ -188,7 +190,7 @@ static int rc_config_get_xff (oconfig_item_t const *ci, double *ret) } value = ci->values[0].value.number; - if ((value => 0.0) && (value < 1.0)) + if ((value >= 0.0) && (value < 1.0)) { *ret = value; return (0); @@ -250,10 +252,18 @@ static int rc_config (oconfig_item_t *ci) status = cf_util_get_string (child, &daemon_address); else if (strcasecmp ("CreateFiles", key) == 0) status = cf_util_get_boolean (child, &config_create_files); + else if (strcasecmp ("CreateFilesAsync", key) == 0) + status = cf_util_get_boolean (child, &rrdcreate_config.async); else if (strcasecmp ("CollectStatistics", key) == 0) status = cf_util_get_boolean (child, &config_collect_stats); else if (strcasecmp ("StepSize", key) == 0) - status = rc_config_get_int_positive (child, &rrdcreate_config.stepsize); + { + int tmp = -1; + + status = rc_config_get_int_positive (child, &tmp); + if (status == 0) + rrdcreate_config.stepsize = (unsigned long) tmp; + } else if (strcasecmp ("HeartBeat", key) == 0) status = rc_config_get_int_positive (child, &rrdcreate_config.heartbeat); else if (strcasecmp ("RRARows", key) == 0) @@ -453,6 +463,8 @@ static int rc_write (const data_set_t *ds, const value_list_t *vl, filename); return (-1); } + else if (rrdcreate_config.async) + return (0); } }