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