{apcups,battery} plugin: Changes the voltage DS as for the sensors plugin.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 4 Feb 2007 09:18:18 +0000 (10:18 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 4 Feb 2007 09:18:18 +0000 (10:18 +0100)
src/apcups.c
src/battery.c

index 1eddcd5..3060e18 100644 (file)
@@ -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 =
index 64ff994..e52c2c8 100644 (file)
@@ -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 =