aboutsummaryrefslogtreecommitdiff
path: root/collector/exec_bsd.go
diff options
context:
space:
mode:
Diffstat (limited to 'collector/exec_bsd.go')
-rw-r--r--collector/exec_bsd.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/collector/exec_bsd.go b/collector/exec_bsd.go
index ca5099c..3ee8479 100644
--- a/collector/exec_bsd.go
+++ b/collector/exec_bsd.go
@@ -47,32 +47,32 @@ func NewExecCollector() (Collector, error) {
47 sysctls: []bsdSysctl{ 47 sysctls: []bsdSysctl{
48 { 48 {
49 name: "exec_context_switches_total", 49 name: "exec_context_switches_total",
50 description: "Context switches since system boot. Resets at architeture unsigned integer.", 50 description: "Context switches since system boot. Resets at architecture unsigned integer.",
51 mib: "vm.stats.sys.v_swtch", 51 mib: "vm.stats.sys.v_swtch",
52 }, 52 },
53 { 53 {
54 name: "exec_traps_total", 54 name: "exec_traps_total",
55 description: "Traps since system boot. Resets at architeture unsigned integer.", 55 description: "Traps since system boot. Resets at architecture unsigned integer.",
56 mib: "vm.stats.sys.v_trap", 56 mib: "vm.stats.sys.v_trap",
57 }, 57 },
58 { 58 {
59 name: "exec_system_calls_total", 59 name: "exec_system_calls_total",
60 description: "System calls since system boot. Resets at architeture unsigned integer.", 60 description: "System calls since system boot. Resets at architecture unsigned integer.",
61 mib: "vm.stats.sys.v_syscall", 61 mib: "vm.stats.sys.v_syscall",
62 }, 62 },
63 { 63 {
64 name: "exec_device_interrupts_total", 64 name: "exec_device_interrupts_total",
65 description: "Device interrupts since system boot. Resets at architeture unsigned integer.", 65 description: "Device interrupts since system boot. Resets at architecture unsigned integer.",
66 mib: "vm.stats.sys.v_intr", 66 mib: "vm.stats.sys.v_intr",
67 }, 67 },
68 { 68 {
69 name: "exec_software_interrupts_total", 69 name: "exec_software_interrupts_total",
70 description: "Software interrupts since system boot. Resets at architeture unsigned integer.", 70 description: "Software interrupts since system boot. Resets at architecture unsigned integer.",
71 mib: "vm.stats.sys.v_soft", 71 mib: "vm.stats.sys.v_soft",
72 }, 72 },
73 { 73 {
74 name: "exec_forks_total", 74 name: "exec_forks_total",
75 description: "Number of fork() calls since system boot. Resets at architeture unsigned integer.", 75 description: "Number of fork() calls since system boot. Resets at architecture unsigned integer.",
76 mib: "vm.stats.vm.v_forks", 76 mib: "vm.stats.vm.v_forks",
77 }, 77 },
78 { 78 {