]> arthur.barton.de Git - netdata.git/blob - src/plugin_freebsd.c
Separate net.inet.icmp.stats module
[netdata.git] / src / plugin_freebsd.c
1 #include "common.h"
2
3 static struct freebsd_module {
4     const char *name;
5     const char *dim;
6
7     int enabled;
8
9     int (*func)(int update_every, usec_t dt);
10     usec_t duration;
11
12     RRDDIM *rd;
13
14 } freebsd_modules[] = {
15
16         { .name = "freebsd_old", .dim = "freebsd_old", .enabled = 1, .func = do_freebsd_sysctl_old },
17
18         // system metrics
19         { .name = "vm.loadavg", .dim = "loadavg", .enabled = 1, .func = do_vm_loadavg },
20         { .name = "vm.vmtotal", .dim = "vmtotal", .enabled = 1, .func = do_vm_vmtotal },
21         { .name = "kern.cp_time", .dim = "cp_time", .enabled = 1, .func = do_kern_cp_time },
22         { .name = "hw.intrcnt", .dim = "hw_intr", .enabled = 1, .func = do_hw_intcnt },
23         { .name = "vm.stats.sys.v_intr", .dim = "dev_intr", .enabled = 1, .func = do_vm_stats_sys_v_intr },
24         { .name = "vm.stats.sys.v_soft", .dim = "soft_intr", .enabled = 1, .func = do_vm_stats_sys_v_soft },
25         { .name = "vm.stats.sys.v_swtch", .dim = "context_swtch", .enabled = 1, .func = do_vm_stats_sys_v_swtch },
26         { .name = "vm.stats.vm.v_forks", .dim = "forks", .enabled = 1, .func = do_vm_stats_sys_v_forks },
27         { .name = "vm.swap_info", .dim = "swap", .enabled = 1, .func = do_vm_swap_info },
28         { .name = "system.ram", .dim = "system_ram", .enabled = 1, .func = do_system_ram },
29         { .name = "vm.stats.vm.v_swappgs", .dim = "swap_io", .enabled = 1, .func = do_vm_stats_sys_v_swappgs },
30         { .name = "kern.ipc.sem", .dim = "semaphores", .enabled = 1, .func = do_kern_ipc_sem },
31         { .name = "kern.ipc.shm", .dim = "shared_memory", .enabled = 1, .func = do_kern_ipc_shm },
32         { .name = "kern.ipc.msq", .dim = "message_queues", .enabled = 1, .func = do_kern_ipc_msq },
33         { .name = "uptime", .dim = "uptime", .enabled = 1, .func = do_uptime },
34         { .name = "net.isr", .dim = "net_isr", .enabled = 1, .func = do_net_isr },
35
36         // network metrics
37         { .name = "net.inet.tcp.states", .dim = "tcp_states", .enabled = 1, .func = do_net_inet_tcp_states },
38         { .name = "net.inet.tcp.stats",  .dim = "tcp_stats",  .enabled = 1, .func = do_net_inet_tcp_stats },
39         { .name = "net.inet.udp.stats",  .dim = "udp_stats",  .enabled = 1, .func = do_net_inet_udp_stats },
40         { .name = "net.inet.icmp.stats",  .dim = "icmp_stats",  .enabled = 1, .func = do_net_inet_icmp_stats },
41
42         // CPU metrics
43         { .name = "kern.cp_times", .dim = "cp_times", .enabled = 1, .func = do_kern_cp_times },
44
45         // memory metrics
46         { .name = "vm.stats.vm.v_pgfaults", .dim = "pgfaults", .enabled = 1, .func = do_vm_stats_sys_v_pgfaults },
47
48         // the terminator of this array
49         { .name = NULL, .dim = NULL, .enabled = 0, .func = NULL }
50 };
51
52 void *freebsd_main(void *ptr) {
53     struct netdata_static_thread *static_thread = (struct netdata_static_thread *)ptr;
54
55     info("FREEBSD Plugin thread created with task id %d", gettid());
56
57     if(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) != 0)
58         error("Cannot set pthread cancel type to DEFERRED.");
59
60     if(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) != 0)
61         error("Cannot set pthread cancel state to ENABLE.");
62
63     int vdo_cpu_netdata = config_get_boolean("plugin:freebsd", "netdata server resources", 1);
64
65     // initialize FreeBSD plugin
66     if (freebsd_plugin_init())
67         netdata_exit = 1;
68
69     // check the enabled status for each module
70     int i;
71     for(i = 0 ; freebsd_modules[i].name ;i++) {
72         struct freebsd_module *pm = &freebsd_modules[i];
73
74         pm->enabled = config_get_boolean("plugin:freebsd", pm->name, pm->enabled);
75         pm->duration = 0ULL;
76         pm->rd = NULL;
77     }
78
79     usec_t step = localhost->rrd_update_every * USEC_PER_SEC;
80     heartbeat_t hb;
81     heartbeat_init(&hb);
82
83     for(;;) {
84         usec_t hb_dt = heartbeat_next(&hb, step);
85         usec_t duration = 0ULL;
86
87         if(unlikely(netdata_exit)) break;
88
89         // BEGIN -- the job to be done
90
91         for(i = 0 ; freebsd_modules[i].name ;i++) {
92             struct freebsd_module *pm = &freebsd_modules[i];
93             if(unlikely(!pm->enabled)) continue;
94
95             debug(D_PROCNETDEV_LOOP, "FREEBSD calling %s.", pm->name);
96
97             pm->enabled = !pm->func(localhost->rrd_update_every, hb_dt);
98             pm->duration = heartbeat_dt_usec(&hb) - duration;
99             duration += pm->duration;
100
101             if(unlikely(netdata_exit)) break;
102         }
103
104         // END -- the job is done
105
106         // --------------------------------------------------------------------
107
108         if(vdo_cpu_netdata) {
109             static RRDSET *st = NULL;
110
111             if(unlikely(!st)) {
112                 st = rrdset_find_bytype_localhost("netdata", "plugin_freebsd_modules");
113
114                 if(!st) {
115                     st = rrdset_create_localhost("netdata", "plugin_freebsd_modules", NULL, "freebsd", NULL
116                     , "NetData FreeBSD Plugin Modules Durations", "milliseconds/run", 132001
117                     , localhost->rrd_update_every, RRDSET_TYPE_STACKED);
118
119                     for(i = 0 ; freebsd_modules[i].name ;i++) {
120                         struct freebsd_module *pm = &freebsd_modules[i];
121                         if(unlikely(!pm->enabled)) continue;
122
123                         pm->rd = rrddim_add(st, pm->dim, NULL, 1, 1000, RRD_ALGORITHM_ABSOLUTE);
124                     }
125                 }
126             }
127             else rrdset_next(st);
128
129             for(i = 0 ; freebsd_modules[i].name ;i++) {
130                 struct freebsd_module *pm = &freebsd_modules[i];
131                 if(unlikely(!pm->enabled)) continue;
132
133                 rrddim_set_by_pointer(st, pm->rd, pm->duration);
134             }
135             rrdset_done(st);
136
137             global_statistics_charts();
138             registry_statistics();
139         }
140     }
141
142     info("FREEBSD thread exiting");
143
144     static_thread->enabled = 0;
145     pthread_exit(NULL);
146     return NULL;
147 }