diff options
author | Florian Eckert <fe@dev.tdt.de> | 2022-06-24 09:29:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-24 09:29:10 +0200 |
commit | 3617cb311a89522aec5c722bd817412e823313a1 (patch) | |
tree | 04a69eb99e0c40f542a48be0a2bfa02f16b857df | |
parent | 283b269c7c0f164311b11d459953b1b34f6974cf (diff) | |
parent | eb632da5bbd732bbffc2761fbb191267ef2375d0 (diff) |
Merge pull request #18778 from bluebrother/collectd-dsl-fixes
collectd: Fix various issues with lantiq dsl metrics.
-rw-r--r-- | utils/collectd/files/lua-scripts/dsl.lua | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/utils/collectd/files/lua-scripts/dsl.lua b/utils/collectd/files/lua-scripts/dsl.lua index 29a4be11b..4811a6d17 100644 --- a/utils/collectd/files/lua-scripts/dsl.lua +++ b/utils/collectd/files/lua-scripts/dsl.lua @@ -44,7 +44,7 @@ local line_vars = { type = "bitrate" }, { - name = "latn", + name = "interleave_delay", type = "latency" } } @@ -52,19 +52,19 @@ local line_vars = { local errors = { { name = "uas", - type = "gauge" + type = "count" }, { name = "rx_corrupted", - type = "gauge" + type = "errors" }, { name = "rx_retransmitted", - type = "gauge" + type = "errors" }, { name = "tx_retransmitted", - type = "gauge" + type = "errors" } } @@ -81,14 +81,6 @@ local erb_vars = { local general_vars = { { - name = "profile", - type = "gauge" - }, - { - name = "mode", - type = "gauge" - }, - { name = "state_num", type = "gauge" }, @@ -117,6 +109,13 @@ local function get_values(hostname, variables, metrics, direction) if metrics and metrics[name] ~= nil then local value = metrics[name] local metric = build_metric(name, direction) + if information["type"] == "bool" then + if metrics[name] == true then + value = 1 + else + value = 0 + end + end local t = { host = host, |