diff options
author | Florian Eckert <fe@dev.tdt.de> | 2020-06-24 11:04:13 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2020-06-24 13:20:26 +0200 |
commit | e7054e7e791566f1908bfd26b7e09dbac04b3dc4 (patch) | |
tree | 81b69f9981979334db95e96b83e6eb8cf31eab67 | |
parent | a481a2006ccc27addb1e930e6b760f846a6abc0f (diff) |
collectd: fix ubi data source type
Currently the values are stored in the ubi plugin as data source type
`counter`. But this makes no sense, because the values change very slowly
and I don't want to know the rate of change. It is better to store the
value as data source type `gauge`. Then I can see the current value.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
-rw-r--r-- | utils/collectd/patches/920-fix-ubi-data-source-type.patch | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/utils/collectd/patches/920-fix-ubi-data-source-type.patch b/utils/collectd/patches/920-fix-ubi-data-source-type.patch new file mode 100644 index 000000000..ca61fa1b8 --- /dev/null +++ b/utils/collectd/patches/920-fix-ubi-data-source-type.patch @@ -0,0 +1,47 @@ +--- a/src/ubi.c ++++ b/src/ubi.c +@@ -70,13 +70,13 @@ static int ubi_config(const char *key, c + } /* int ubi_config */ + + static void ubi_submit(const char *dev_name, const char *type, +- counter_t value) { ++ gauge_t value) { + value_list_t vl = VALUE_LIST_INIT; + + if (ignorelist_match(ignorelist, dev_name) != 0) + return; + +- vl.values = &(value_t){.counter = value}; ++ vl.values = &(value_t){.gauge = value}; + vl.values_len = 1; + sstrncpy(vl.plugin, PLUGIN_NAME, sizeof(vl.plugin)); + sstrncpy(vl.type_instance, dev_name, sizeof(vl.type_instance)); +@@ -107,7 +107,7 @@ static int ubi_read_dev_attr(const char + return -1; + } + +- ubi_submit(dev_name, attr, (counter_t)val); ++ ubi_submit(dev_name, attr, (gauge_t)val); + + return 0; + } /* int ubi_read_dev_attr */ +--- a/src/types.db ++++ b/src/types.db +@@ -7,7 +7,7 @@ apache_scoreboard value:GAUGE:0:65 + ath_nodes value:GAUGE:0:65535 + ath_stat value:DERIVE:0:U + backends value:GAUGE:0:65535 +-bad_peb_count value:COUNTER:0:U ++bad_peb_count value:GAUGE:0:U + bitrate value:GAUGE:0:4294967295 + blocked_clients value:GAUGE:0:U + bucket value:GAUGE:0:U +@@ -140,7 +140,7 @@ job_stats value:DERIVE:0:U + latency value:GAUGE:0:U + links value:GAUGE:0:U + load shortterm:GAUGE:0:5000, midterm:GAUGE:0:5000, longterm:GAUGE:0:5000 +-max_ec value:COUNTER:0:U ++max_ec value:GAUGE:0:U + media value:GAUGE:0:18446744073709551615 + memory_bandwidth value:DERIVE:0:U + md_disks value:GAUGE:0:U |