]> arthur.barton.de Git - netdata.git/blob - src/proc_softirqs.c
prevent adding idle cpu cores or disks
[netdata.git] / src / proc_softirqs.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 50
19
20 struct interrupt {
21         int used;
22         char *id;
23         char name[MAX_INTERRUPT_NAME + 1];
24         unsigned long long value[MAX_INTERRUPT_CPUS];
25         unsigned long long total;
26 };
27
28 int do_proc_softirqs(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/softirqs", "interrupts per core", 1);
35
36         if(!ff) {
37                 char filename[FILENAME_MAX + 1];
38                 snprintf(filename, FILENAME_MAX, "%s%s", global_host_prefix, "/proc/softirqs");
39                 ff = procfile_open(config_get("plugin:proc:/proc/softirqs", "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_SOFTIRQS: Cannot find the number of CPUs in /proc/softirqs");
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                 int idlen = strlen(irr->id);
82                 if(irr->id[idlen - 1] == ':')
83                         irr->id[idlen - 1] = '\0';
84
85                 int c;
86                 for(c = 0; c < cpus ;c++) {
87                         if((c + 1) < (int)words)
88                                 irr->value[c] = strtoull(procfile_lineword(ff, l, (uint32_t)(c + 1)), NULL, 10);
89                         else
90                                 irr->value[c] = 0;
91
92                         irr->total += irr->value[c];
93                 }
94
95                 strncpy(irr->name, irr->id, MAX_INTERRUPT_NAME);
96                 irr->name[MAX_INTERRUPT_NAME] = '\0';
97
98                 irr->used = 1;
99         }
100
101         RRDSET *st;
102
103         // --------------------------------------------------------------------
104
105         st = rrdset_find_bytype("system", "softirqs");
106         if(!st) {
107                 st = rrdset_create("system", "softirqs", NULL, "system", "System softirqs", "softirqs/s", 1001, update_every, RRDSET_TYPE_STACKED);
108
109                 for(l = 0; l < lines ;l++) {
110                         if(!irrs[l].used) continue;
111                         rrddim_add(st, irrs[l].id, irrs[l].name, 1, 1, RRDDIM_INCREMENTAL);
112                 }
113         }
114         else rrdset_next(st);
115
116         for(l = 0; l < lines ;l++) {
117                 if(!irrs[l].used) continue;
118                 rrddim_set(st, irrs[l].id, irrs[l].total);
119         }
120         rrdset_done(st);
121
122         if(do_per_core) {
123                 int c;
124
125                 for(c = 0; c < cpus ; c++) {
126                         char family[256];
127                         snprintf(family, 256, "cpu%d", c);
128
129                         char id[256];
130                         snprintf(id, 256, "cpu%d_softirqs", c);
131
132                         st = rrdset_find_bytype("cpu", id);
133                         if(!st) {
134                                 // find if everything is zero
135                                 unsigned long long core_sum = 0 ;
136                                 for(l = 0; l < lines ;l++) {
137                                         if(!irrs[l].used) continue;
138                                         core_sum += irrs[l].value[c];
139                                 }
140                                 if(core_sum == 0) continue; // try next core
141
142                                 char name[256], title[256];
143                                 snprintf(name, 256, "cpu%d_softirqs", c);
144                                 snprintf(title, 256, "CPU%d softirqs", c);
145                                 st = rrdset_create("cpu", id, name, family, title, "softirqs/s", 3000 + c, update_every, RRDSET_TYPE_STACKED);
146
147                                 for(l = 0; l < lines ;l++) {
148                                         if(!irrs[l].used) continue;
149                                         rrddim_add(st, irrs[l].id, irrs[l].name, 1, 1, RRDDIM_INCREMENTAL);
150                                 }
151                         }
152                         else rrdset_next(st);
153
154                         for(l = 0; l < lines ;l++) {
155                                 if(!irrs[l].used) continue;
156                                 rrddim_set(st, irrs[l].id, irrs[l].value[c]);
157                         }
158                         rrdset_done(st);
159                 }
160         }
161
162         return 0;
163 }