perl plugin: Don't ignore the 'interval' member when converting value lists.
authorSebastian Harl <sh@tokkee.org>
Sat, 14 Feb 2009 15:45:55 +0000 (16:45 +0100)
committerSebastian Harl <sh@tokkee.org>
Mon, 16 Feb 2009 14:22:04 +0000 (15:22 +0100)
src/collectd-perl.pod
src/perl.c

index 18dbafd..1bd8743 100644 (file)
@@ -198,6 +198,7 @@ layout looks like this:
   {
     values => [123, 0.5],
     time   => time (),
+    interval => $interval_g,
     host   => $hostname_g,
     plugin => 'myplugin',
     type   => 'myplugin',
index 27abc62..81d78c6 100644 (file)
@@ -339,16 +339,16 @@ static int hv2value_list (pTHX_ HV *hash, value_list_t *vl)
                }
        }
 
-       if (NULL != (tmp = hv_fetch (hash, "time", 4, 0))) {
+       if (NULL != (tmp = hv_fetch (hash, "time", 4, 0)))
                vl->time = (time_t)SvIV (*tmp);
-       }
 
-       if (NULL != (tmp = hv_fetch (hash, "host", 4, 0))) {
+       if (NULL != (tmp = hv_fetch (hash, "interval", 8, 0)))
+               vl->interval = SvIV (*tmp);
+
+       if (NULL != (tmp = hv_fetch (hash, "host", 4, 0)))
                sstrncpy (vl->host, SvPV_nolen (*tmp), sizeof (vl->host));
-       }
-       else {
+       else
                sstrncpy (vl->host, hostname_g, sizeof (vl->host));
-       }
 
        if (NULL != (tmp = hv_fetch (hash, "plugin", 6, 0)))
                sstrncpy (vl->plugin, SvPV_nolen (*tmp), sizeof (vl->plugin));
@@ -535,6 +535,9 @@ static int value_list2hv (pTHX_ value_list_t *vl, data_set_t *ds, HV *hash)
                if (NULL == hv_store (hash, "time", 4, newSViv (vl->time), 0))
                        return -1;
 
+       if (NULL == hv_store (hash, "interval", 8, newSViv (vl->interval), 0))
+               return -1;
+
        if ('\0' != vl->host[0])
                if (NULL == hv_store (hash, "host", 4, newSVpv (vl->host, 0), 0))
                        return -1;