swap plugin: Report swap sizes in bytes.
authorMarek Becka <marek.becka@superhosting.cz>
Tue, 9 Jun 2015 20:56:55 +0000 (16:56 -0400)
committerFlorian Forster <octo@collectd.org>
Thu, 11 Jun 2015 07:53:17 +0000 (08:53 +0100)
Regression from 43aa1c5cc9ab69004d0fe6de480c78815224111b.

src/swap.c

index a8276c7..cfde4ea 100644 (file)
@@ -281,7 +281,8 @@ static int swap_read_separate (void) /* {{{ */
                if (total < used)
                        continue;
 
-               swap_submit_usage (path, used, total - used, NULL, NAN);
+               swap_submit_usage (path, used * 1024.0, (total - used) * 1024.0,
+                               NULL, NAN);
        }
 
        fclose (fh);
@@ -340,8 +341,9 @@ static int swap_read_combined (void) /* {{{ */
        if (swap_used < 0.0)
                return (EINVAL);
 
-       swap_submit_usage (NULL, swap_used, swap_free,
-                       isnan (swap_cached) ? NULL : "cached", swap_cached);
+       swap_submit_usage (NULL, swap_used * 1024.0, swap_free * 1024.0,
+                       isnan (swap_cached) ? NULL : "cached",
+                       isnan (swap_cached) ? NAN : swap_cached * 1024.0);
        return (0);
 } /* }}} int swap_read_combined */