0db727c78373a524ee15b3c5856f72e2c3f8f53a
[collectd.git] / src / contextswitch.c
1 /**
2  * collectd - src/contextswitch.c
3  * Copyright (C) 2009  Patrik Weiskircher
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Patrik Weiskircher <weiskircher at inqnet.at>
20  **/
21
22 #include "collectd.h"
23 #include "common.h"
24 #include "plugin.h"
25
26 #if !KERNEL_LINUX
27 # error "No applicable input method."
28 #endif
29
30 static void cs_submit (unsigned long context_switches)
31 {
32         value_t values[1];
33         value_list_t vl = VALUE_LIST_INIT;
34
35         values[0].derive = context_switches;
36
37         vl.values = values;
38         vl.values_len = 1;
39         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
40         sstrncpy (vl.plugin, "contextswitch", sizeof (vl.plugin));
41         sstrncpy (vl.type, "contextswitch", sizeof (vl.type));
42
43         plugin_dispatch_values (&vl);
44 }
45
46 static int cs_read (void)
47 {
48         FILE *fh;
49         char buffer[64];
50         int numfields;
51         char *fields[2];
52         unsigned long result = 0;
53
54         fh = fopen ("/proc/stat", "r");
55         if (fh == NULL) {
56                 ERROR ("contextswitch plugin: unable to open /proc/stat: %s",
57                                 sstrerror (errno, buffer, sizeof (buffer)));
58                 return (-1);
59         }
60
61         while (fgets(buffer, sizeof(buffer), fh))
62         {
63                 if (strncmp(buffer, "ctxt", 4))
64                         continue;
65
66                 numfields = strsplit(buffer, fields, 2);
67                 if (numfields != 2) {
68                         ERROR ("contextswitch plugin: ctxt in /proc/stat contains more than 2 fields.");
69                         break;
70                 }
71
72                 result = strtoul(fields[1], NULL, 10);
73                 if (errno == ERANGE && result == ULONG_MAX) {
74                         ERROR ("contextswitch plugin: ctxt value in /proc/stat overflows.");
75                         break;
76                 }
77
78                 break;
79         }
80         fclose(fh);
81
82         if (result == 0) {
83                 ERROR ("contextswitch plugin: unable to find context switch value.");
84                 return -1;
85         }
86
87         cs_submit(result);
88
89         return 0;
90 }
91
92 void module_register (void)
93 {
94         plugin_register_read ("contextswitch", cs_read);
95 } /* void module_register */