summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4765d9e)
raw | patch | inline | side by side (parent: 4765d9e)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 14 Sep 2008 14:25:37 +0000 (16:25 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 14 Sep 2008 14:25:37 +0000 (16:25 +0200) |
src/rrdcached.c | patch | blob | history |
diff --git a/src/rrdcached.c b/src/rrdcached.c
index 012b28151eca540a9ee6d4d5098243d8dd191558..f9d65ca55c45cf3f06ed44fb295f438afba9b5bc 100644 (file)
--- a/src/rrdcached.c
+++ b/src/rrdcached.c
status = rrdc_stats_get (&head);
if (status != 0)
{
- ERROR ("rrdcached plugin: rrdc_stats_get failed.");
+ ERROR ("rrdcached plugin: rrdc_stats_get failed with status %i.", status);
return (-1);
}
sstrncpy (vl.type, "gauge", sizeof (vl.type));
sstrncpy (vl.type_instance, "tree_depth", sizeof (vl.type_instance));
}
+ else if (strcasecmp ("FlushesReceived", ptr->name) == 0)
+ {
+ sstrncpy (vl.type, "operations", sizeof (vl.type));
+ sstrncpy (vl.type_instance, "receive-flush", sizeof (vl.type_instance));
+ }
+ else if (strcasecmp ("JournalBytes", ptr->name) == 0)
+ {
+ sstrncpy (vl.type, "counter", sizeof (vl.type));
+ sstrncpy (vl.type_instance, "journal-bytes", sizeof (vl.type_instance));
+ }
+ else if (strcasecmp ("JournalRotate", ptr->name) == 0)
+ {
+ sstrncpy (vl.type, "counter", sizeof (vl.type));
+ sstrncpy (vl.type_instance, "journal-rotates", sizeof (vl.type_instance));
+ }
+ else if (strcasecmp ("UpdatesReceived", ptr->name) == 0)
+ {
+ sstrncpy (vl.type, "operations", sizeof (vl.type));
+ sstrncpy (vl.type_instance, "receive-update", sizeof (vl.type_instance));
+ }
else
{
+ DEBUG ("rrdcached plugin: rc_read: Unknown statistic `%s'.", ptr->name);
continue;
}