X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fwrite_graphite.c;h=9feb6b338458f828d0deb4bbacf81a6feb3750d3;hb=f66916deea905254061bb07245e007471faf2ecf;hp=ad8dfcef487a2e512e4c2e539c8698625c17a105;hpb=92860d61218a3da1e9b74a2fad37e9df88df8ce8;p=collectd.git diff --git a/src/write_graphite.c b/src/write_graphite.c index ad8dfcef..9feb6b33 100644 --- a/src/write_graphite.c +++ b/src/write_graphite.c @@ -566,6 +566,9 @@ static int wg_config_node (oconfig_item_t *ci) else if (strcasecmp ("AlwaysAppendDS", child->key) == 0) cf_util_get_flag (child, &cb->format_flags, GRAPHITE_ALWAYS_APPEND_DS); + else if (strcasecmp ("PreserveSeparator", child->key) == 0) + cf_util_get_flag (child, &cb->format_flags, + GRAPHITE_PRESERVE_SEPARATOR); else if (strcasecmp ("DropDuplicateFields", child->key) == 0) cf_util_get_flag (child, &cb->format_flags, GRAPHITE_DROP_DUPE_FIELDS);