]> arthur.barton.de Git - netdata.git/blob - src/proc_interrupts.c
build: migrate to autotools
[netdata.git] / src / proc_interrupts.c
1 #ifdef HAVE_CONFIG_H
2 #include <config.h>
3 #endif
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
7 #include <ctype.h>
8
9 #include "common.h"
10 #include "appconfig.h"
11 #include "procfile.h"
12 #include "rrd.h"
13 #include "plugin_proc.h"
14 #include "log.h"
15
16 #define MAX_INTERRUPTS 256
17 #define MAX_INTERRUPT_CPUS 256
18 #define MAX_INTERRUPT_NAME 20
19
20 struct interrupt {
21         int used;
22         char *id;
23         char *name;
24         unsigned long long value[MAX_INTERRUPT_CPUS];
25         unsigned long long total;
26 };
27
28 int do_proc_interrupts(int update_every, unsigned long long dt) {
29         static procfile *ff = NULL;
30         static int cpus = -1, do_per_core = -1;
31
32         if(dt) {};
33
34         if(do_per_core == -1) do_per_core = config_get_boolean("plugin:proc:/proc/interrupts", "interrupts per core", 0);
35
36         if(!ff) {
37                 char filename[FILENAME_MAX + 1];
38                 snprintf(filename, FILENAME_MAX, "%s%s", global_host_prefix, "/proc/interrupts");
39                 ff = procfile_open(config_get("plugin:proc:/proc/interrupts", "filename to monitor", filename), " \t", PROCFILE_FLAG_DEFAULT);
40         }
41         if(!ff) return 1;
42
43         ff = procfile_readall(ff);
44         if(!ff) return 0; // we return 0, so that we will retry to open it next time
45
46         uint32_t lines = procfile_lines(ff), l;
47         uint32_t words = procfile_linewords(ff, 0), w;
48
49         // find how many CPUs are there
50         if(cpus == -1) {
51                 cpus = 0;
52                 for(w = 0; w < words ; w++) {
53                         if(strncmp(procfile_lineword(ff, 0, w), "CPU", 3) == 0)
54                                 cpus++;
55                 }
56
57                 if(cpus > MAX_INTERRUPT_CPUS) cpus = MAX_INTERRUPT_CPUS;
58         }
59
60         if(!cpus) {
61                 error("PLUGIN: PROC_INTERRUPTS: Cannot find the number of CPUs in /proc/interrupts");
62                 return 1;
63         }
64
65         // allocate the size we need;
66         struct interrupt irrs[lines];
67         irrs[0].used = 0;
68
69         // loop through all lines
70         for(l = 1; l < lines ;l++) {
71                 struct interrupt *irr = &irrs[l];
72                 irr->used = 0;
73                 irr->total = 0;
74
75                 words = procfile_linewords(ff, l);
76                 if(!words) continue;
77
78                 irr->id = procfile_lineword(ff, l, 0);
79                 if(!irr->id || !irr->id[0]) continue;
80
81                 if(irr->id[strlen(irr->id) - 1] == ':')
82                         irr->id[strlen(irr->id) - 1] = '\0';
83
84                 int c;
85                 for(c = 0; c < cpus ;c++) {
86                         if((c + 1) < (int)words)
87                                 irr->value[c] = strtoull(procfile_lineword(ff, l, (uint32_t)(c + 1)), NULL, 10);
88                         else
89                                 irr->value[c] = 0;
90
91                         irr->total += irr->value[c];
92                 }
93
94                 if(isdigit(irr->id[0]) && (uint32_t)(cpus + 2) < words) {
95                         irr->name = procfile_lineword(ff, l, words - 1);
96                 }
97                 else
98                         irr->name = irr->id;
99
100                 irr->used = 1;
101         }
102
103         RRDSET *st;
104
105         // --------------------------------------------------------------------
106
107         st = rrdset_find_bytype("system", "interrupts");
108         if(!st) {
109                 st = rrdset_create("system", "interrupts", NULL, "system", "System interrupts", "interrupts/s", 1000, update_every, RRDSET_TYPE_STACKED);
110
111                 for(l = 0; l < lines ;l++) {
112                         if(!irrs[l].used) continue;
113                         rrddim_add(st, irrs[l].id, irrs[l].name, 1, update_every, RRDDIM_INCREMENTAL);
114                 }
115         }
116         else rrdset_next(st);
117
118         for(l = 0; l < lines ;l++) {
119                 if(!irrs[l].used) continue;
120                 rrddim_set(st, irrs[l].id, irrs[l].total);
121         }
122         rrdset_done(st);
123
124         if(do_per_core) {
125                 int c;
126
127                 for(c = 0; c < cpus ; c++) {
128                         char id[256];
129                         snprintf(id, 256, "cpu%d_interrupts", c);
130
131                         st = rrdset_find_bytype("cpu", id);
132                         if(!st) {
133                                 char name[256], title[256];
134                                 snprintf(name, 256, "cpu%d_interrupts", c);
135                                 snprintf(title, 256, "CPU%d Interrupts", c);
136                                 st = rrdset_create("cpu", id, name, "cpu", title, "interrupts/s", 2000 + c, update_every, RRDSET_TYPE_STACKED);
137
138                                 for(l = 0; l < lines ;l++) {
139                                         if(!irrs[l].used) continue;
140                                         rrddim_add(st, irrs[l].id, irrs[l].name, 1, update_every, RRDDIM_INCREMENTAL);
141                                 }
142                         }
143                         else rrdset_next(st);
144
145                         for(l = 0; l < lines ;l++) {
146                                 if(!irrs[l].used) continue;
147                                 rrddim_set(st, irrs[l].id, irrs[l].value[c]);
148                         }
149                         rrdset_done(st);
150                 }
151         }
152
153         return 0;
154 }