3 * Copyright (C) 2007 Peter Holik
4 * Copyright (C) 2011 Florian Forster
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; either version 2 of the License, or (at your
9 * option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 * Peter Holik <peter at holik.at>
27 #include "configfile.h"
28 #include "utils_ignorelist.h"
31 # error "No applicable input method."
35 * (Module-)Global variables
37 static const char *config_keys[] =
42 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
44 static ignorelist_t *ignorelist = NULL;
49 static int irq_config (const char *key, const char *value)
51 if (ignorelist == NULL)
52 ignorelist = ignorelist_create (/* invert = */ 1);
54 if (strcasecmp (key, "Irq") == 0)
56 ignorelist_add (ignorelist, value);
58 else if (strcasecmp (key, "IgnoreSelected") == 0)
63 ignorelist_set_invert (ignorelist, invert);
73 static void irq_submit (const char *irq_name, derive_t value)
76 value_list_t vl = VALUE_LIST_INIT;
78 if (ignorelist_match (ignorelist, irq_name) != 0)
81 values[0].derive = value;
85 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
86 sstrncpy (vl.plugin, "irq", sizeof (vl.plugin));
87 sstrncpy (vl.type, "irq", sizeof (vl.type));
88 sstrncpy (vl.type_instance, irq_name, sizeof (vl.type_instance));
90 plugin_dispatch_values (&vl);
91 } /* void irq_submit */
93 static int irq_read (void)
102 * CPU0 CPU1 CPU2 CPU3
103 * 0: 2574 1 3 2 IO-APIC-edge timer
104 * 1: 102553 158669 218062 70587 IO-APIC-edge i8042
105 * 8: 0 0 0 1 IO-APIC-edge rtc0
107 fh = fopen ("/proc/interrupts", "r");
111 ERROR ("irq plugin: fopen (/proc/interrupts): %s",
112 sstrerror (errno, errbuf, sizeof (errbuf)));
116 /* Get CPU count from the first line */
117 if(fgets (buffer, sizeof (buffer), fh) != NULL) {
118 cpu_count = strsplit (buffer, fields,
119 STATIC_ARRAY_SIZE (fields));
121 ERROR ("irq plugin: unable to get CPU count from first line "
122 "of /proc/interrupts");
126 while (fgets (buffer, sizeof (buffer), fh) != NULL)
133 int irq_values_to_parse;
135 fields_num = strsplit (buffer, fields,
136 STATIC_ARRAY_SIZE (fields));
140 /* Parse this many numeric fields, skip the rest
141 * (+1 because first there is a name of irq in each line) */
142 if (fields_num >= cpu_count + 1)
143 irq_values_to_parse = cpu_count;
145 irq_values_to_parse = fields_num - 1;
147 /* First field is irq name and colon */
148 irq_name = fields[0];
149 irq_name_len = strlen (irq_name);
150 if (irq_name_len < 2)
153 /* Check if irq name ends with colon.
154 * Otherwise it's a header. */
155 if (irq_name[irq_name_len - 1] != ':')
158 irq_name[irq_name_len - 1] = 0;
162 for (i = 1; i <= irq_values_to_parse; i++)
168 status = parse_value (fields[i], &v, DS_TYPE_DERIVE);
172 irq_value += v.derive;
175 /* No valid fields -> do not submit anything. */
179 irq_submit (irq_name, irq_value);
187 void module_register (void)
189 plugin_register_config ("irq", irq_config,
190 config_keys, config_keys_num);
191 plugin_register_read ("irq", irq_read);
192 } /* void module_register */