X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fusers.c;h=7df06c2baa41fe382ab536a25b7e2468dabf8b12;hb=63cbff115ba03717e81087d1419fc07c24d205c2;hp=db75565dd202aaa4a2cd56aa3934ce96d4ac409e;hpb=44ac0e1f1041655e0615c7475d0f592e6ab91629;p=collectd.git diff --git a/src/users.c b/src/users.c index db75565d..7df06c2b 100644 --- a/src/users.c +++ b/src/users.c @@ -4,8 +4,7 @@ * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the - * Free Software Foundation; either version 2 of the License, or (at your - * option) any later version. + * Free Software Foundation; only version 2 of the license is applicable. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -40,24 +39,12 @@ # define USERS_HAVE_READ 0 #endif -static data_source_t dsrc[1] = -{ - {"users", DS_TYPE_GAUGE, 0.0, 65535.0} -}; - -static data_set_t ds = -{ - "users", 1, dsrc -}; - #if USERS_HAVE_READ static void users_submit (gauge_t value) { value_t values[1]; value_list_t vl = VALUE_LIST_INIT; - DBG ("value = %lf;", value); - values[0].gauge = value; vl.values = values; @@ -113,7 +100,7 @@ static int users_read (void) void module_register (void) { - plugin_register_data_set (&ds); +#if USERS_HAVE_READ plugin_register_read ("users", users_read); - return; +#endif } /* void module_register(void) */