X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fusers.c;h=b605ff84c9d7ab98cfb8abbd762b8d30207882fe;hb=bc7992ed0693313a2b1fe282a5bf23f1cc9f8e42;hp=afe26e1e27fc27a3d155b135b56d3571290bcd46;hpb=c55316847bbd97410e65892b97f022e74bfe9b0f;p=collectd.git diff --git a/src/users.c b/src/users.c index afe26e1e..b605ff84 100644 --- a/src/users.c +++ b/src/users.c @@ -23,6 +23,10 @@ #include "common.h" #include "plugin.h" +#if HAVE_STATGRAB_H +# include +#endif /* HAVE_STATGRAB_H */ + #if HAVE_UTMPX_H # include /* #endif HAVE_UTMPX_H */ @@ -44,11 +48,11 @@ static void users_submit (gauge_t value) vl.values = values; vl.values_len = 1; - vl.time = time (NULL); - strcpy (vl.host, hostname_g); - strcpy (vl.plugin, "users"); + sstrncpy (vl.host, hostname_g, sizeof (vl.host)); + sstrncpy (vl.plugin, "users", sizeof (vl.plugin)); + sstrncpy (vl.type, "users", sizeof (vl.plugin)); - plugin_dispatch_values ("users", &vl); + plugin_dispatch_values (&vl); } /* void users_submit */ static int users_read (void) @@ -89,6 +93,16 @@ static int users_read (void) users_submit (users); /* #endif HAVE_GETUTENT */ +#elif HAVE_LIBSTATGRAB + sg_user_stats *us; + + us = sg_get_user_stats (); + if (us == NULL) + return (-1); + + users_submit ((gauge_t) us->num_entries); +/* #endif HAVE_LIBSTATGRAB */ + #else # error "No applicable input method." #endif