summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 836598b)
raw | patch | inline | side by side (parent: 836598b)
author | Michael Leinartas <mleinartas@twitter.com> | |
Mon, 12 Sep 2016 15:20:34 +0000 (10:20 -0500) | ||
committer | Michael Leinartas <mleinartas@twitter.com> | |
Mon, 12 Sep 2016 15:20:34 +0000 (10:20 -0500) |
src/collectd.conf.pod | patch | blob | history | |
src/utils_format_graphite.c | patch | blob | history |
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index 0fa74d54bbe515d49aef330fd2adb20d9ef2a831..c7a818dd339904100854483ebe018989598a2f5f 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
@@ -7818,6 +7818,12 @@ If set to B<true>, append the name of the I<Data Source> (DS) to the "metric"
identifier. If set to B<false> (the default), this is only done when there is
more than one DS.
+=item B<DropDuplicateFields> B<false>|B<true>
+
+If set to B<true>, detect and remove duplicate components in Graphite metric
+names. For example, the metric name C<host.load.load.shortterm> will
+be shortened to C<host.load.shortterm>.
+
=back
=head2 Plugin C<write_tsdb>
index c7262655d1bc3cd2071b956813de6b7c14d7ce9e..904f43c5ac0c6ad7d507783860bbc93285d5cede 100644 (file)
if (n_type_instance[0] != '\0')
if ((flags & GRAPHITE_DROP_DUPE_FIELDS) && strcmp(n_plugin, n_type) == 0)
+ {
sstrncpy (tmp_type, n_type_instance, sizeof (tmp_type));
+ }
else
+ {
ssnprintf (tmp_type, sizeof (tmp_type), "%s%c%s",
n_type,
(flags & GRAPHITE_SEPARATE_INSTANCES) ? '.' : '-',
n_type_instance);
+ }
else
sstrncpy (tmp_type, n_type, sizeof (tmp_type));
assert (!(flags & GRAPHITE_ALWAYS_APPEND_DS) || (ds_name != NULL));
if (ds_name != NULL)
if ((flags & GRAPHITE_DROP_DUPE_FIELDS) && strcmp(tmp_plugin, tmp_type) == 0)
+ {
ssnprintf (ret, ret_len, "%s%s%s.%s.%s",
prefix, n_host, postfix, tmp_plugin, ds_name);
+ }
else
+ {
ssnprintf (ret, ret_len, "%s%s%s.%s.%s.%s",
prefix, n_host, postfix, tmp_plugin, tmp_type, ds_name);
+ }
else
ssnprintf (ret, ret_len, "%s%s%s.%s.%s",
prefix, n_host, postfix, tmp_plugin, tmp_type);