summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c4d3c86)
raw | patch | inline | side by side (parent: c4d3c86)
author | Jérôme Renard <jerome.renard@gmail.com> | |
Sat, 12 Jun 2010 10:06:31 +0000 (12:06 +0200) | ||
committer | Jérôme Renard <jerome.renard@gmail.com> | |
Sat, 12 Jun 2010 10:06:31 +0000 (12:06 +0200) |
src/collectd.conf.in | patch | blob | history | |
src/varnish.c | patch | blob | history |
diff --git a/src/collectd.conf.in b/src/collectd.conf.in
index 10ec9807ed158c298270f4cfc056d8fe434e7bd1..00fe533f185554126332382c806bade36c8e1cf3 100644 (file)
--- a/src/collectd.conf.in
+++ b/src/collectd.conf.in
# - bytes allocated
# - bytes free
# CollectSM false
+#
+# Will monitor:
+# - Total Sessions
+# - Total Requests
+# - Total pipe
+# - Total pass
+# - Total fetch
+# - Total header bytes
+# - Total body bytes
+# CollectTotals false
# </Instance>
#</Plugin>
diff --git a/src/varnish.c b/src/varnish.c
index de73bf88aaa873e016c2d26a3b4663b8745ee436..940854200b83ba4e4c58c641bb7751fcb5ea0ceb 100644 (file)
--- a/src/varnish.c
+++ b/src/varnish.c
* n_objsendfile Objects sent with sendfile N
* n_objwrite Objects sent with write N
* n_objoverflow Objects overflowing workspace N
- * s_sess Total Sessions N
- * s_req Total Requests N
- * s_pipe Total pipe N
- * s_pass Total pass N
- * s_fetch Total fetch N
- * s_hdrbytes Total header bytes N
- * s_bodybytes Total body bytes N
+ * s_sess Total Sessions Y
+ * s_req Total Requests Y
+ * s_pipe Total pipe Y
+ * s_pass Total pass Y
+ * s_fetch Total fetch Y
+ * s_hdrbytes Total header bytes Y
+ * s_bodybytes Total body bytes Y
* sess_closed Session Closed N
* sess_pipeline Session Pipeline N
* sess_readahead Session Read Ahead N
_Bool collect_sma;
_Bool collect_sms;
_Bool collect_sm;
+ _Bool collect_totals;
};
typedef struct user_config_s user_config_t; /* }}} */
@@ -330,6 +331,24 @@ static void varnish_monitor(const user_config_t *conf, struct varnish_stats *VSL
/* SMS bytes freed */
varnish_submit_gauge (conf->instance, "bytes", "storage-synth-free", VSL_stats->sms_bfree);
}
+
+ if(conf->collect_totals)
+ {
+ /* Total Sessions */
+ varnish_submit_derive (conf->instance, "total_counters", "sessions", VSL_stats->s_sess);
+ /* Total Requests */
+ varnish_submit_derive (conf->instance, "total_requests", "requests", VSL_stats->s_req);
+ /* Total pipe */
+ varnish_submit_derive (conf->instance, "total_operations", "pipe", VSL_stats->s_pipe);
+ /* Total pass */
+ varnish_submit_derive (conf->instance, "total_operations", "pass", VSL_stats->s_pass);
+ /* Total fetch */
+ varnish_submit_derive (conf->instance, "total_operations", "fetches", VSL_stats->s_fetch);
+ /* Total header bytes */
+ varnish_submit_derive (conf->instance, "total_bytes", "header-bytes", VSL_stats->s_hdrbytes);
+ /* Total body byte */
+ varnish_submit_derive (conf->instance, "total_bytes", "body-bytes", VSL_stats->s_bodybytes);
+ }
} /* }}} void varnish_monitor */
static int varnish_read(user_data_t *ud) /* {{{ */
cf_util_get_boolean (child, &conf->collect_sms);
else if (strcasecmp ("CollectSM", child->key) == 0)
cf_util_get_boolean (child, &conf->collect_sm);
+ else if (strcasecmp ("CollectTotals", child->key) == 0)
+ cf_util_get_boolean (child, &conf->collect_totals);
else
{
WARNING ("Varnish plugin: Ignoring unknown "
&& !conf->collect_shm
&& !conf->collect_sma
&& !conf->collect_sms
- && !conf->collect_sm)
+ && !conf->collect_sm
+ && !conf->collect_totals)
{
WARNING ("Varnish plugin: No metric has been configured for "
"instance \"%s\". Disabling this instance.",