Fix #828
This commit is contained in:
parent
7b09623fa8
commit
12a2410373
|
@ -53,6 +53,7 @@ It can also check response text.
|
||||||
|
|
||||||
- All measurements have the following tags:
|
- All measurements have the following tags:
|
||||||
- host
|
- host
|
||||||
|
- server
|
||||||
- port
|
- port
|
||||||
- protocol
|
- protocol
|
||||||
|
|
||||||
|
@ -60,7 +61,7 @@ It can also check response text.
|
||||||
|
|
||||||
```
|
```
|
||||||
$ ./telegraf -config telegraf.conf -input-filter net_response -test
|
$ ./telegraf -config telegraf.conf -input-filter net_response -test
|
||||||
net_response,host=127.0.0.1,port=22,protocol=tcp response_time=0.18070360500000002,string_found=true 1454785464182527094
|
net_response,host=myhost,server=192.168.2.2,port=22,protocol=tcp response_time=0.18070360500000002,string_found=true 1454785464182527094
|
||||||
net_response,host=127.0.0.1,port=2222,protocol=tcp response_time=1.090124776,string_found=false 1454784433658942325
|
net_response,host=myhost,server=192.168.2.2,port=2222,protocol=tcp response_time=1.090124776,string_found=false 1454784433658942325
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -169,7 +169,7 @@ func (c *NetResponse) Gather(acc telegraf.Accumulator) error {
|
||||||
return errors.New("Bad port")
|
return errors.New("Bad port")
|
||||||
}
|
}
|
||||||
// Prepare data
|
// Prepare data
|
||||||
tags := map[string]string{"host": host, "port": port}
|
tags := map[string]string{"server": host, "port": port}
|
||||||
var fields map[string]interface{}
|
var fields map[string]interface{}
|
||||||
// Gather data
|
// Gather data
|
||||||
if c.Protocol == "tcp" {
|
if c.Protocol == "tcp" {
|
||||||
|
|
|
@ -69,7 +69,7 @@ func TestTCPOK1(t *testing.T) {
|
||||||
"string_found": true,
|
"string_found": true,
|
||||||
"response_time": 1.0,
|
"response_time": 1.0,
|
||||||
},
|
},
|
||||||
map[string]string{"host": "127.0.0.1",
|
map[string]string{"server": "127.0.0.1",
|
||||||
"port": "2004",
|
"port": "2004",
|
||||||
"protocol": "tcp",
|
"protocol": "tcp",
|
||||||
},
|
},
|
||||||
|
@ -109,7 +109,7 @@ func TestTCPOK2(t *testing.T) {
|
||||||
"string_found": false,
|
"string_found": false,
|
||||||
"response_time": 1.0,
|
"response_time": 1.0,
|
||||||
},
|
},
|
||||||
map[string]string{"host": "127.0.0.1",
|
map[string]string{"server": "127.0.0.1",
|
||||||
"port": "2004",
|
"port": "2004",
|
||||||
"protocol": "tcp",
|
"protocol": "tcp",
|
||||||
},
|
},
|
||||||
|
@ -164,7 +164,7 @@ func TestUDPOK1(t *testing.T) {
|
||||||
"string_found": true,
|
"string_found": true,
|
||||||
"response_time": 1.0,
|
"response_time": 1.0,
|
||||||
},
|
},
|
||||||
map[string]string{"host": "127.0.0.1",
|
map[string]string{"server": "127.0.0.1",
|
||||||
"port": "2004",
|
"port": "2004",
|
||||||
"protocol": "udp",
|
"protocol": "udp",
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue