parent
c31ba94bb8
commit
3bc53558a4
|
@ -21,30 +21,11 @@ var tagHeaders map[string]string = map[string]string{
|
||||||
"t": "type",
|
"t": "type",
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mapping of the ntpq tag key to the index in the command output
|
|
||||||
var tagI map[string]int = map[string]int{
|
|
||||||
"remote": -1,
|
|
||||||
"refid": -1,
|
|
||||||
"stratum": -1,
|
|
||||||
"type": -1,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mapping of float metrics to their index in the command output
|
|
||||||
var floatI map[string]int = map[string]int{
|
|
||||||
"delay": -1,
|
|
||||||
"offset": -1,
|
|
||||||
"jitter": -1,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mapping of int metrics to their index in the command output
|
|
||||||
var intI map[string]int = map[string]int{
|
|
||||||
"when": -1,
|
|
||||||
"poll": -1,
|
|
||||||
"reach": -1,
|
|
||||||
}
|
|
||||||
|
|
||||||
type NTPQ struct {
|
type NTPQ struct {
|
||||||
runQ func() ([]byte, error)
|
runQ func() ([]byte, error)
|
||||||
|
tagI map[string]int
|
||||||
|
floatI map[string]int
|
||||||
|
intI map[string]int
|
||||||
|
|
||||||
DNSLookup bool `toml:"dns_lookup"`
|
DNSLookup bool `toml:"dns_lookup"`
|
||||||
}
|
}
|
||||||
|
@ -101,19 +82,19 @@ func (n *NTPQ) Gather(acc telegraf.Accumulator) error {
|
||||||
for i, field := range fields {
|
for i, field := range fields {
|
||||||
// Check if field is a tag:
|
// Check if field is a tag:
|
||||||
if tagKey, ok := tagHeaders[field]; ok {
|
if tagKey, ok := tagHeaders[field]; ok {
|
||||||
tagI[tagKey] = i
|
n.tagI[tagKey] = i
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
// check if field is a float metric:
|
// check if field is a float metric:
|
||||||
if _, ok := floatI[field]; ok {
|
if _, ok := n.floatI[field]; ok {
|
||||||
floatI[field] = i
|
n.floatI[field] = i
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
// check if field is an int metric:
|
// check if field is an int metric:
|
||||||
if _, ok := intI[field]; ok {
|
if _, ok := n.intI[field]; ok {
|
||||||
intI[field] = i
|
n.intI[field] = i
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -125,7 +106,7 @@ func (n *NTPQ) Gather(acc telegraf.Accumulator) error {
|
||||||
mFields := make(map[string]interface{})
|
mFields := make(map[string]interface{})
|
||||||
|
|
||||||
// Get tags from output
|
// Get tags from output
|
||||||
for key, index := range tagI {
|
for key, index := range n.tagI {
|
||||||
if index == -1 {
|
if index == -1 {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -133,7 +114,7 @@ func (n *NTPQ) Gather(acc telegraf.Accumulator) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get integer metrics from output
|
// Get integer metrics from output
|
||||||
for key, index := range intI {
|
for key, index := range n.intI {
|
||||||
if index == -1 || index >= len(fields) {
|
if index == -1 || index >= len(fields) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -183,7 +164,7 @@ func (n *NTPQ) Gather(acc telegraf.Accumulator) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// get float metrics from output
|
// get float metrics from output
|
||||||
for key, index := range floatI {
|
for key, index := range n.floatI {
|
||||||
if index == -1 || index >= len(fields) {
|
if index == -1 || index >= len(fields) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -223,10 +204,40 @@ func (n *NTPQ) runq() ([]byte, error) {
|
||||||
return cmd.Output()
|
return cmd.Output()
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func newNTPQ() *NTPQ {
|
||||||
inputs.Add("ntpq", func() telegraf.Input {
|
// Mapping of the ntpq tag key to the index in the command output
|
||||||
n := &NTPQ{}
|
tagI := map[string]int{
|
||||||
|
"remote": -1,
|
||||||
|
"refid": -1,
|
||||||
|
"stratum": -1,
|
||||||
|
"type": -1,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mapping of float metrics to their index in the command output
|
||||||
|
floatI := map[string]int{
|
||||||
|
"delay": -1,
|
||||||
|
"offset": -1,
|
||||||
|
"jitter": -1,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mapping of int metrics to their index in the command output
|
||||||
|
intI := map[string]int{
|
||||||
|
"when": -1,
|
||||||
|
"poll": -1,
|
||||||
|
"reach": -1,
|
||||||
|
}
|
||||||
|
|
||||||
|
n := &NTPQ{
|
||||||
|
tagI: tagI,
|
||||||
|
floatI: floatI,
|
||||||
|
intI: intI,
|
||||||
|
}
|
||||||
n.runQ = n.runq
|
n.runQ = n.runq
|
||||||
return n
|
return n
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
inputs.Add("ntpq", func() telegraf.Input {
|
||||||
|
return newNTPQ()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,9 +16,8 @@ func TestSingleNTPQ(t *testing.T) {
|
||||||
ret: []byte(singleNTPQ),
|
ret: []byte(singleNTPQ),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.NoError(t, acc.GatherError(n.Gather))
|
assert.NoError(t, acc.GatherError(n.Gather))
|
||||||
|
@ -46,9 +45,8 @@ func TestBadIntNTPQ(t *testing.T) {
|
||||||
ret: []byte(badIntParseNTPQ),
|
ret: []byte(badIntParseNTPQ),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.Error(t, acc.GatherError(n.Gather))
|
assert.Error(t, acc.GatherError(n.Gather))
|
||||||
|
@ -75,9 +73,8 @@ func TestBadFloatNTPQ(t *testing.T) {
|
||||||
ret: []byte(badFloatParseNTPQ),
|
ret: []byte(badFloatParseNTPQ),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.Error(t, acc.GatherError(n.Gather))
|
assert.Error(t, acc.GatherError(n.Gather))
|
||||||
|
@ -104,9 +101,8 @@ func TestDaysNTPQ(t *testing.T) {
|
||||||
ret: []byte(whenDaysNTPQ),
|
ret: []byte(whenDaysNTPQ),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.NoError(t, acc.GatherError(n.Gather))
|
assert.NoError(t, acc.GatherError(n.Gather))
|
||||||
|
@ -134,9 +130,8 @@ func TestHoursNTPQ(t *testing.T) {
|
||||||
ret: []byte(whenHoursNTPQ),
|
ret: []byte(whenHoursNTPQ),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.NoError(t, acc.GatherError(n.Gather))
|
assert.NoError(t, acc.GatherError(n.Gather))
|
||||||
|
@ -164,9 +159,8 @@ func TestMinutesNTPQ(t *testing.T) {
|
||||||
ret: []byte(whenMinutesNTPQ),
|
ret: []byte(whenMinutesNTPQ),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.NoError(t, acc.GatherError(n.Gather))
|
assert.NoError(t, acc.GatherError(n.Gather))
|
||||||
|
@ -194,9 +188,8 @@ func TestBadWhenNTPQ(t *testing.T) {
|
||||||
ret: []byte(whenBadNTPQ),
|
ret: []byte(whenBadNTPQ),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.Error(t, acc.GatherError(n.Gather))
|
assert.Error(t, acc.GatherError(n.Gather))
|
||||||
|
@ -226,9 +219,8 @@ func TestParserNTPQ(t *testing.T) {
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
|
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.NoError(t, acc.GatherError(n.Gather))
|
assert.NoError(t, acc.GatherError(n.Gather))
|
||||||
|
|
||||||
|
@ -289,9 +281,8 @@ func TestMultiNTPQ(t *testing.T) {
|
||||||
ret: []byte(multiNTPQ),
|
ret: []byte(multiNTPQ),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.NoError(t, acc.GatherError(n.Gather))
|
assert.NoError(t, acc.GatherError(n.Gather))
|
||||||
|
@ -330,14 +321,12 @@ func TestMultiNTPQ(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestBadHeaderNTPQ(t *testing.T) {
|
func TestBadHeaderNTPQ(t *testing.T) {
|
||||||
resetVars()
|
|
||||||
tt := tester{
|
tt := tester{
|
||||||
ret: []byte(badHeaderNTPQ),
|
ret: []byte(badHeaderNTPQ),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.NoError(t, acc.GatherError(n.Gather))
|
assert.NoError(t, acc.GatherError(n.Gather))
|
||||||
|
@ -360,14 +349,12 @@ func TestBadHeaderNTPQ(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMissingDelayColumnNTPQ(t *testing.T) {
|
func TestMissingDelayColumnNTPQ(t *testing.T) {
|
||||||
resetVars()
|
|
||||||
tt := tester{
|
tt := tester{
|
||||||
ret: []byte(missingDelayNTPQ),
|
ret: []byte(missingDelayNTPQ),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.NoError(t, acc.GatherError(n.Gather))
|
assert.NoError(t, acc.GatherError(n.Gather))
|
||||||
|
@ -393,9 +380,8 @@ func TestFailedNTPQ(t *testing.T) {
|
||||||
ret: []byte(singleNTPQ),
|
ret: []byte(singleNTPQ),
|
||||||
err: fmt.Errorf("Test failure"),
|
err: fmt.Errorf("Test failure"),
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{}
|
acc := testutil.Accumulator{}
|
||||||
assert.Error(t, acc.GatherError(n.Gather))
|
assert.Error(t, acc.GatherError(n.Gather))
|
||||||
|
@ -445,9 +431,8 @@ func TestNoRefID(t *testing.T) {
|
||||||
ret: []byte(noRefID),
|
ret: []byte(noRefID),
|
||||||
err: nil,
|
err: nil,
|
||||||
}
|
}
|
||||||
n := &NTPQ{
|
n := newNTPQ()
|
||||||
runQ: tt.runqTest,
|
n.runQ = tt.runqTest
|
||||||
}
|
|
||||||
|
|
||||||
acc := testutil.Accumulator{
|
acc := testutil.Accumulator{
|
||||||
TimeFunc: func() time.Time { return now },
|
TimeFunc: func() time.Time { return now },
|
||||||
|
@ -466,38 +451,6 @@ func (t *tester) runqTest() ([]byte, error) {
|
||||||
return t.ret, t.err
|
return t.ret, t.err
|
||||||
}
|
}
|
||||||
|
|
||||||
func resetVars() {
|
|
||||||
// Mapping of ntpq header names to tag keys
|
|
||||||
tagHeaders = map[string]string{
|
|
||||||
"remote": "remote",
|
|
||||||
"refid": "refid",
|
|
||||||
"st": "stratum",
|
|
||||||
"t": "type",
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mapping of the ntpq tag key to the index in the command output
|
|
||||||
tagI = map[string]int{
|
|
||||||
"remote": -1,
|
|
||||||
"refid": -1,
|
|
||||||
"stratum": -1,
|
|
||||||
"type": -1,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mapping of float metrics to their index in the command output
|
|
||||||
floatI = map[string]int{
|
|
||||||
"delay": -1,
|
|
||||||
"offset": -1,
|
|
||||||
"jitter": -1,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mapping of int metrics to their index in the command output
|
|
||||||
intI = map[string]int{
|
|
||||||
"when": -1,
|
|
||||||
"poll": -1,
|
|
||||||
"reach": -1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var singleNTPQ = ` remote refid st t when poll reach delay offset jitter
|
var singleNTPQ = ` remote refid st t when poll reach delay offset jitter
|
||||||
==============================================================================
|
==============================================================================
|
||||||
*uschi5-ntp-002. 10.177.80.46 2 u 101 256 37 51.016 233.010 17.462
|
*uschi5-ntp-002. 10.177.80.46 2 u 101 256 37 51.016 233.010 17.462
|
||||||
|
|
Loading…
Reference in New Issue