2 * collectd - src/contextswitch.c
3 * Copyright (C) 2009 Patrik Weiskircher
4 * Copyright (C) 2010 Kimo Rosenbaum
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; only version 2 of the License is applicable.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Patrik Weiskircher <weiskircher at inqnet.at>
21 * Kimo Rosenbaum <http://github.com/kimor79>
28 #ifdef HAVE_SYS_SYSCTL_H
29 # include <sys/sysctl.h>
33 /* no global variables */
34 /* #endif HAVE_SYSCTLBYNAME */
37 /* no global variables */
38 /* #endif KERNEL_LINUX */
41 # include <sys/protosw.h>
42 # include <libperfstat.h>
43 /* #endif HAVE_PERFSTAT */
46 # error "No applicable input method."
49 static void cs_submit (derive_t context_switches)
52 value_list_t vl = VALUE_LIST_INIT;
54 values[0].derive = (derive_t) context_switches;
58 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
59 sstrncpy (vl.plugin, "contextswitch", sizeof (vl.plugin));
60 sstrncpy (vl.type, "contextswitch", sizeof (vl.type));
62 plugin_dispatch_values (&vl);
65 static int cs_read (void)
69 size_t value_len = sizeof (value);
72 status = sysctlbyname ("vm.stats.sys.v_swtch",
74 /* new pointer = */ NULL, /* new length = */ 0);
77 ERROR("contextswitch plugin: sysctlbyname "
78 "(vm.stats.sys.v_swtch) failed");
83 /* #endif HAVE_SYSCTLBYNAME */
93 fh = fopen ("/proc/stat", "r");
95 ERROR ("contextswitch plugin: unable to open /proc/stat: %s",
96 sstrerror (errno, buffer, sizeof (buffer)));
100 while (fgets(buffer, sizeof(buffer), fh) != NULL)
104 numfields = strsplit(buffer, fields, STATIC_ARRAY_SIZE (fields));
108 if (strcmp("ctxt", fields[0]) != 0)
113 result = (derive_t) strtoll (fields[1], &endptr, /* base = */ 10);
114 if ((endptr == fields[1]) || (errno != 0)) {
115 ERROR ("contextswitch plugin: Cannot parse ctxt value: %s",
128 ERROR ("contextswitch plugin: Unable to find context switch value.");
129 /* #endif KERNEL_LINUX */
133 perfstat_cpu_total_t perfcputotal;
135 status = perfstat_cpu_total(NULL, &perfcputotal, sizeof(perfstat_cpu_total_t), 1);
139 ERROR ("contextswitch plugin: perfstat_cpu_total: %s",
140 sstrerror (errno, errbuf, sizeof (errbuf)));
144 cs_submit(perfcputotal.pswitch);
146 #endif /* defined(HAVE_PERFSTAT) */
151 void module_register (void)
153 plugin_register_read ("contextswitch", cs_read);
154 } /* void module_register */