From 8800f1e25538f45afbd16c69484a767eb68e6cd5 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sun, 4 Feb 2007 10:18:18 +0100 Subject: [PATCH] {apcups,battery} plugin: Changes the voltage DS as for the sensors plugin. --- src/apcups.c | 2 +- src/battery.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apcups.c b/src/apcups.c index 1eddcd5e..3060e18c 100644 --- a/src/apcups.c +++ b/src/apcups.c @@ -84,7 +84,7 @@ static int global_sockfd = -1; */ static data_source_t data_source_voltage[1] = { - {"voltage", DS_TYPE_GAUGE, NAN, NAN} + {"value", DS_TYPE_GAUGE, NAN, NAN} }; static data_set_t ds_voltage = diff --git a/src/battery.c b/src/battery.c index 64ff994a..e52c2c80 100644 --- a/src/battery.c +++ b/src/battery.c @@ -59,7 +59,7 @@ static data_source_t data_source_charge[1] = { - {"charge", DS_TYPE_GAUGE, 0, NAN} + {"value", DS_TYPE_GAUGE, 0, NAN} }; static data_set_t charge_ds = @@ -69,7 +69,7 @@ static data_set_t charge_ds = static data_source_t data_source_current[1] = { - {"current", DS_TYPE_GAUGE, NAN, NAN} + {"value", DS_TYPE_GAUGE, NAN, NAN} }; static data_set_t current_ds = @@ -79,7 +79,7 @@ static data_set_t current_ds = static data_source_t data_source_voltage[1] = { - {"voltage", DS_TYPE_GAUGE, NAN, NAN} + {"value", DS_TYPE_GAUGE, NAN, NAN} }; static data_set_t voltage_ds = -- 2.11.0