]> arthur.barton.de Git - netdata.git/blob - src/plugin_freebsd.c
Separate net.inet.ip.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         { .name = "net.inet.ip.stats",    .dim = "ip_stats",   .enabled = 1, .func = do_net_inet_ip_stats },
42
43         // CPU metrics
44         { .name = "kern.cp_times", .dim = "cp_times", .enabled = 1, .func = do_kern_cp_times },
45
46         // memory metrics
47         { .name = "vm.stats.vm.v_pgfaults", .dim = "pgfaults", .enabled = 1, .func = do_vm_stats_sys_v_pgfaults },
48
49         // the terminator of this array
50         { .name = NULL, .dim = NULL, .enabled = 0, .func = NULL }
51 };
52
53 void *freebsd_main(void *ptr) {
54     struct netdata_static_thread *static_thread = (struct netdata_static_thread *)ptr;
55
56     info("FREEBSD Plugin thread created with task id %d", gettid());
57
58     if(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) != 0)
59         error("Cannot set pthread cancel type to DEFERRED.");
60
61     if(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) != 0)
62         error("Cannot set pthread cancel state to ENABLE.");
63
64     int vdo_cpu_netdata = config_get_boolean("plugin:freebsd", "netdata server resources", 1);
65
66     // initialize FreeBSD plugin
67     if (freebsd_plugin_init())
68         netdata_exit = 1;
69
70     // check the enabled status for each module
71     int i;
72     for(i = 0 ; freebsd_modules[i].name ;i++) {
73         struct freebsd_module *pm = &freebsd_modules[i];
74
75         pm->enabled = config_get_boolean("plugin:freebsd", pm->name, pm->enabled);
76         pm->duration = 0ULL;
77         pm->rd = NULL;
78     }
79
80     usec_t step = localhost->rrd_update_every * USEC_PER_SEC;
81     heartbeat_t hb;
82     heartbeat_init(&hb);
83
84     for(;;) {
85         usec_t hb_dt = heartbeat_next(&hb, step);
86         usec_t duration = 0ULL;
87
88         if(unlikely(netdata_exit)) break;
89
90         // BEGIN -- the job to be done
91
92         for(i = 0 ; freebsd_modules[i].name ;i++) {
93             struct freebsd_module *pm = &freebsd_modules[i];
94             if(unlikely(!pm->enabled)) continue;
95
96             debug(D_PROCNETDEV_LOOP, "FREEBSD calling %s.", pm->name);
97
98             pm->enabled = !pm->func(localhost->rrd_update_every, hb_dt);
99             pm->duration = heartbeat_dt_usec(&hb) - duration;
100             duration += pm->duration;
101
102             if(unlikely(netdata_exit)) break;
103         }
104
105         // END -- the job is done
106
107         // --------------------------------------------------------------------
108
109         if(vdo_cpu_netdata) {
110             static RRDSET *st = NULL;
111
112             if(unlikely(!st)) {
113                 st = rrdset_find_bytype_localhost("netdata", "plugin_freebsd_modules");
114
115                 if(!st) {
116                     st = rrdset_create_localhost("netdata", "plugin_freebsd_modules", NULL, "freebsd", NULL
117                     , "NetData FreeBSD Plugin Modules Durations", "milliseconds/run", 132001
118                     , localhost->rrd_update_every, RRDSET_TYPE_STACKED);
119
120                     for(i = 0 ; freebsd_modules[i].name ;i++) {
121                         struct freebsd_module *pm = &freebsd_modules[i];
122                         if(unlikely(!pm->enabled)) continue;
123
124                         pm->rd = rrddim_add(st, pm->dim, NULL, 1, 1000, RRD_ALGORITHM_ABSOLUTE);
125                     }
126                 }
127             }
128             else rrdset_next(st);
129
130             for(i = 0 ; freebsd_modules[i].name ;i++) {
131                 struct freebsd_module *pm = &freebsd_modules[i];
132                 if(unlikely(!pm->enabled)) continue;
133
134                 rrddim_set_by_pointer(st, pm->rd, pm->duration);
135             }
136             rrdset_done(st);
137
138             global_statistics_charts();
139             registry_statistics();
140         }
141     }
142
143     info("FREEBSD thread exiting");
144
145     static_thread->enabled = 0;
146     pthread_exit(NULL);
147     return NULL;
148 }