X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fwrite_graphite.c;h=ebc5ce2041bfdaba89045596c62ceae0eb6a4929;hb=50ad45a6a6c68119823d56c1ccec74135ba744f9;hp=845ba898b2dff38362116d841bd06452c473301c;hpb=59919c47562a2266a6dbd306a78113cb8ddd5ffe;p=collectd.git diff --git a/src/write_graphite.c b/src/write_graphite.c index 845ba898..ebc5ce20 100644 --- a/src/write_graphite.c +++ b/src/write_graphite.c @@ -548,6 +548,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 ("DropDuplicateFields", child->key) == 0) + cf_util_get_flag (child, &cb->format_flags, + GRAPHITE_DROP_DUPE_FIELDS); else if (strcasecmp ("EscapeCharacter", child->key) == 0) config_set_char (&cb->escape_char, child); else