summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 620fa4e)
raw | patch | inline | side by side (parent: 620fa4e)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Mon, 10 Jul 2006 12:34:45 +0000 (14:34 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Mon, 10 Jul 2006 12:34:45 +0000 (14:34 +0200) |
src/processes.c | patch | blob | history |
diff --git a/src/processes.c b/src/processes.c
index 0b52b9895209f09ab61b27429f4169fa3ee3236a..b02e869d37bdce009576370c7c80c1f9fbbc0d93 100644 (file)
--- a/src/processes.c
+++ b/src/processes.c
};
static int ps_count_ds_num = 2;
+static char *ps_pagefaults_file = "processes/ps_pagefaults-%s.rrd";
+static char *ps_pagefaults_ds_def[] =
+{
+ /* max = 2^63 - 1 */
+ "DS:minflt:GAUGE:"COLLECTD_HEARTBEAT":0:9223372036854775807",
+ "DS:majflt:GAUGE:"COLLECTD_HEARTBEAT":0:9223372036854775807",
+ NULL
+};
+static int ps_pagefaults_ds_num = 2;
+
static char *config_keys[] =
{
"CollectName",
ps_count_ds_def, ps_count_ds_num);
}
+static void ps_pagefaults_write (char *host, char *inst, char *val)
+{
+ char filename[256];
+ int status;
+
+ status = snprintf (filename, 256, ps_pagefaults_file, inst);
+ if ((status < 1) || (status >= 256))
+ return;
+
+ DBG ("host = %s; filename = %s; val = %s;",
+ host, filename, val);
+ rrd_update_file (host, filename, val,
+ ps_pagefaults_ds_def, ps_pagefaults_ds_num);
+}
+
#if PROCESSES_HAVE_READ
static void ps_submit (int running,
int sleeping,
buffer[63] = '\0';
plugin_submit ("ps_count", ps->name, buffer);
+ snprintf (buffer, 64, "%u:%lu:%lu",
+ (unsigned int) curtime,
+ ps->vmem_minflt, ps->vmem_majflt);
+ buffer[63] = '\0';
+ plugin_submit ("ps_pagefaults", ps->name, buffer);
+
DBG ("name = %s; num_proc = %i; num_lwp = %i; vmem_rss = %i; "
"vmem_minflt = %i; vmem_majflt = %i; "
"cpu_user = %i; cpu_system = %i;",
plugin_register ("ps_rss", NULL, NULL, ps_rss_write);
plugin_register ("ps_cputime", NULL, NULL, ps_cputime_write);
plugin_register ("ps_count", NULL, NULL, ps_count_write);
+ plugin_register ("ps_pagefaults", NULL, NULL, ps_pagefaults_write);
cf_register (MODULE_NAME, ps_config, config_keys, config_keys_num);
}