forked from influxdata/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openntpd.go
223 lines (181 loc) · 4.83 KB
/
openntpd.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package openntpd
import (
"bufio"
"bytes"
"fmt"
"os/exec"
"strconv"
"strings"
"time"
"github.com/influxdata/telegraf"
"github.com/influxdata/telegraf/filter"
"github.com/influxdata/telegraf/internal"
"github.com/influxdata/telegraf/plugins/inputs"
)
// Mapping of ntpctl header names to tag keys
var tagHeaders = map[string]string{
"st": "stratum",
}
// Mapping of the ntpctl tag key to the index in the command output
var tagI = map[string]int{
"stratum": 2,
}
// Mapping of float metrics to their index in the command output
var floatI = map[string]int{
"offset": 5,
"delay": 6,
"jitter": 7,
}
// Mapping of int metrics to their index in the command output
var intI = map[string]int{
"wt": 0,
"tl": 1,
"next": 3,
"poll": 4,
}
type runner func(cmdName string, Timeout internal.Duration, UseSudo bool) (*bytes.Buffer, error)
// Openntpd is used to store configuration values
type Openntpd struct {
Binary string
Timeout internal.Duration
UseSudo bool
filter filter.Filter
run runner
}
var defaultBinary = "/usr/sbin/ntpctl"
var defaultTimeout = internal.Duration{Duration: 5 * time.Second}
func (n *Openntpd) Description() string {
return "Get standard NTP query metrics from OpenNTPD."
}
func (n *Openntpd) SampleConfig() string {
return `
## Run ntpctl binary with sudo.
# use_sudo = false
## Location of the ntpctl binary.
# binary = "/usr/sbin/ntpctl"
## Maximum time the ntpctl binary is allowed to run.
# timeout = "5ms"
`
}
// Shell out to ntpctl and return the output
func openntpdRunner(cmdName string, Timeout internal.Duration, UseSudo bool) (*bytes.Buffer, error) {
cmdArgs := []string{"-s", "peers"}
cmd := exec.Command(cmdName, cmdArgs...)
if UseSudo {
cmdArgs = append([]string{cmdName}, cmdArgs...)
cmd = exec.Command("sudo", cmdArgs...)
}
var out bytes.Buffer
cmd.Stdout = &out
err := internal.RunTimeout(cmd, Timeout.Duration)
if err != nil {
return &out, fmt.Errorf("error running ntpctl: %s", err)
}
return &out, nil
}
func (n *Openntpd) Gather(acc telegraf.Accumulator) error {
out, err := n.run(n.Binary, n.Timeout, n.UseSudo)
if err != nil {
return fmt.Errorf("error gathering metrics: %s", err)
}
lineCounter := 0
scanner := bufio.NewScanner(out)
for scanner.Scan() {
// skip first (peer) and second (field list) line
if lineCounter < 2 {
lineCounter++
continue
}
line := scanner.Text()
fields := strings.Fields(line)
mFields := make(map[string]interface{})
tags := make(map[string]string)
// Even line ---> ntp server info
if lineCounter%2 == 0 {
// DNS resolution error ---> keep DNS name as remote name
if fields[0] != "not" {
tags["remote"] = fields[0]
} else {
tags["remote"] = fields[len(fields)-1]
}
}
// Read next line - Odd line ---> ntp server stats
scanner.Scan()
line = scanner.Text()
lineCounter++
fields = strings.Fields(line)
// if there is an ntpctl state prefix, remove it and make it it's own tag
if strings.ContainsAny(string(fields[0]), "*") {
tags["state_prefix"] = string(fields[0])
fields = fields[1:]
}
// Get tags from output
for key, index := range tagI {
if index >= len(fields) {
continue
}
tags[key] = fields[index]
}
// Get integer metrics from output
for key, index := range intI {
if index >= len(fields) {
continue
}
if fields[index] == "-" {
continue
}
if key == "next" || key == "poll" {
m, err := strconv.ParseInt(strings.TrimSuffix(fields[index], "s"), 10, 64)
if err != nil {
acc.AddError(fmt.Errorf("integer value expected, got: %s", fields[index]))
continue
}
mFields[key] = m
} else {
m, err := strconv.ParseInt(fields[index], 10, 64)
if err != nil {
acc.AddError(fmt.Errorf("integer value expected, got: %s", fields[index]))
continue
}
mFields[key] = m
}
}
// get float metrics from output
for key, index := range floatI {
if len(fields) <= index {
continue
}
if fields[index] == "-" || fields[index] == "----" || fields[index] == "peer" || fields[index] == "not" || fields[index] == "valid" {
continue
}
if key == "offset" || key == "delay" || key == "jitter" {
m, err := strconv.ParseFloat(strings.TrimSuffix(fields[index], "ms"), 64)
if err != nil {
acc.AddError(fmt.Errorf("float value expected, got: %s", fields[index]))
continue
}
mFields[key] = m
} else {
m, err := strconv.ParseFloat(fields[index], 64)
if err != nil {
acc.AddError(fmt.Errorf("float value expected, got: %s", fields[index]))
continue
}
mFields[key] = m
}
}
acc.AddFields("openntpd", mFields, tags)
lineCounter++
}
return nil
}
func init() {
inputs.Add("openntpd", func() telegraf.Input {
return &Openntpd{
run: openntpdRunner,
Binary: defaultBinary,
Timeout: defaultTimeout,
UseSudo: false,
}
})
}