Change hddtemp to always put temperature in temperature field (#1905)

Added unit tests for the changes

Fixes #1904
This commit is contained in:
Jonas Falck 2016-12-13 20:40:55 +01:00 committed by Cameron Sparr
parent 5f06bd2566
commit b4f9bc8745
6 changed files with 131 additions and 14 deletions

View File

@ -30,6 +30,7 @@
- [#1730](https://github.com/influxdata/telegraf/issues/1730): Fix win_perf_counters not gathering non-English counters. - [#1730](https://github.com/influxdata/telegraf/issues/1730): Fix win_perf_counters not gathering non-English counters.
- [#2061](https://github.com/influxdata/telegraf/issues/2061): Fix panic when file stat info cannot be collected due to permissions or other issue(s). - [#2061](https://github.com/influxdata/telegraf/issues/2061): Fix panic when file stat info cannot be collected due to permissions or other issue(s).
- [#2045](https://github.com/influxdata/telegraf/issues/2045): Graylog output should set short_message field. - [#2045](https://github.com/influxdata/telegraf/issues/2045): Graylog output should set short_message field.
- [#1904](https://github.com/influxdata/telegraf/issues/1904): Hddtemp always put the value in the field temperature.
## v1.1.2 [2016-12-12] ## v1.1.2 [2016-12-12]

View File

@ -8,7 +8,7 @@ Hddtemp should be installed and its daemon running
## Configuration ## Configuration
``` ```toml
[[inputs.hddtemp]] [[inputs.hddtemp]]
## By default, telegraf gathers temps data from all disks detected by the ## By default, telegraf gathers temps data from all disks detected by the
## hddtemp. ## hddtemp.
@ -20,3 +20,24 @@ Hddtemp should be installed and its daemon running
# address = "127.0.0.1:7634" # address = "127.0.0.1:7634"
# devices = ["sda", "*"] # devices = ["sda", "*"]
``` ```
## Measurements
- hddtemp
- temperature
Tags:
- device
- model
- unit
- status
## Example output
```
> hddtemp,unit=C,status=,host=server1,device=sdb,model=WDC\ WD740GD-00FLA1 temperature=43i 1481655647000000000
> hddtemp,device=sdc,model=SAMSUNG\ HD103UI,unit=C,status=,host=server1 temperature=38i 148165564700000000
> hddtemp,device=sdd,model=SAMSUNG\ HD103UI,unit=C,status=,host=server1 temperature=36i 1481655647000000000
```

View File

@ -8,7 +8,7 @@ import (
"strings" "strings"
) )
type disk struct { type Disk struct {
DeviceName string DeviceName string
Model string Model string
Temperature int32 Temperature int32
@ -16,12 +16,19 @@ type disk struct {
Status string Status string
} }
func Fetch(address string) ([]disk, error) { type hddtemp struct {
}
func New() *hddtemp {
return &hddtemp{}
}
func (h *hddtemp) Fetch(address string) ([]Disk, error) {
var ( var (
err error err error
conn net.Conn conn net.Conn
buffer bytes.Buffer buffer bytes.Buffer
disks []disk disks []Disk
) )
if conn, err = net.Dial("tcp", address); err != nil { if conn, err = net.Dial("tcp", address); err != nil {
@ -48,7 +55,7 @@ func Fetch(address string) ([]disk, error) {
status = temperatureField status = temperatureField
} }
disks = append(disks, disk{ disks = append(disks, Disk{
DeviceName: device, DeviceName: device,
Model: fields[offset+2], Model: fields[offset+2],
Temperature: int32(temperature), Temperature: int32(temperature),

View File

@ -10,13 +10,13 @@ func TestFetch(t *testing.T) {
l := serve(t, []byte("|/dev/sda|foobar|36|C|")) l := serve(t, []byte("|/dev/sda|foobar|36|C|"))
defer l.Close() defer l.Close()
disks, err := Fetch(l.Addr().String()) disks, err := New().Fetch(l.Addr().String())
if err != nil { if err != nil {
t.Error("expecting err to be nil") t.Error("expecting err to be nil")
} }
expected := []disk{ expected := []Disk{
{ {
DeviceName: "sda", DeviceName: "sda",
Model: "foobar", Model: "foobar",
@ -31,7 +31,7 @@ func TestFetch(t *testing.T) {
} }
func TestFetchWrongAddress(t *testing.T) { func TestFetchWrongAddress(t *testing.T) {
_, err := Fetch("127.0.0.1:1") _, err := New().Fetch("127.0.0.1:1")
if err == nil { if err == nil {
t.Error("expecting err to be non-nil") t.Error("expecting err to be non-nil")
@ -42,13 +42,13 @@ func TestFetchStatus(t *testing.T) {
l := serve(t, []byte("|/dev/sda|foobar|SLP|C|")) l := serve(t, []byte("|/dev/sda|foobar|SLP|C|"))
defer l.Close() defer l.Close()
disks, err := Fetch(l.Addr().String()) disks, err := New().Fetch(l.Addr().String())
if err != nil { if err != nil {
t.Error("expecting err to be nil") t.Error("expecting err to be nil")
} }
expected := []disk{ expected := []Disk{
{ {
DeviceName: "sda", DeviceName: "sda",
Model: "foobar", Model: "foobar",
@ -67,13 +67,13 @@ func TestFetchTwoDisks(t *testing.T) {
l := serve(t, []byte("|/dev/hda|ST380011A|46|C||/dev/hdd|ST340016A|SLP|*|")) l := serve(t, []byte("|/dev/hda|ST380011A|46|C||/dev/hdd|ST340016A|SLP|*|"))
defer l.Close() defer l.Close()
disks, err := Fetch(l.Addr().String()) disks, err := New().Fetch(l.Addr().String())
if err != nil { if err != nil {
t.Error("expecting err to be nil") t.Error("expecting err to be nil")
} }
expected := []disk{ expected := []Disk{
{ {
DeviceName: "hda", DeviceName: "hda",
Model: "ST380011A", Model: "ST380011A",

View File

@ -13,6 +13,11 @@ const defaultAddress = "127.0.0.1:7634"
type HDDTemp struct { type HDDTemp struct {
Address string Address string
Devices []string Devices []string
fetcher Fetcher
}
type Fetcher interface {
Fetch(address string) ([]gohddtemp.Disk, error)
} }
func (_ *HDDTemp) Description() string { func (_ *HDDTemp) Description() string {
@ -36,7 +41,10 @@ func (_ *HDDTemp) SampleConfig() string {
} }
func (h *HDDTemp) Gather(acc telegraf.Accumulator) error { func (h *HDDTemp) Gather(acc telegraf.Accumulator) error {
disks, err := gohddtemp.Fetch(h.Address) if h.fetcher == nil {
h.fetcher = gohddtemp.New()
}
disks, err := h.fetcher.Fetch(h.Address)
if err != nil { if err != nil {
return err return err
@ -53,7 +61,7 @@ func (h *HDDTemp) Gather(acc telegraf.Accumulator) error {
} }
fields := map[string]interface{}{ fields := map[string]interface{}{
disk.DeviceName: disk.Temperature, "temperature": disk.Temperature,
} }
acc.AddFields("hddtemp", fields, tags) acc.AddFields("hddtemp", fields, tags)

View File

@ -0,0 +1,80 @@
package hddtemp
import (
"testing"
hddtemp "github.com/influxdata/telegraf/plugins/inputs/hddtemp/go-hddtemp"
"github.com/influxdata/telegraf/testutil"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
type mockFetcher struct {
}
func (h *mockFetcher) Fetch(address string) ([]hddtemp.Disk, error) {
return []hddtemp.Disk{
hddtemp.Disk{
DeviceName: "Disk1",
Model: "Model1",
Temperature: 13,
Unit: "C",
},
hddtemp.Disk{
DeviceName: "Disk2",
Model: "Model2",
Temperature: 14,
Unit: "C",
},
}, nil
}
func newMockFetcher() *mockFetcher {
return &mockFetcher{}
}
func TestFetch(t *testing.T) {
hddtemp := &HDDTemp{
fetcher: newMockFetcher(),
Devices: []string{"*"},
}
acc := &testutil.Accumulator{}
err := hddtemp.Gather(acc)
require.NoError(t, err)
assert.Equal(t, acc.NFields(), 2)
var tests = []struct {
fields map[string]interface{}
tags map[string]string
}{
{
map[string]interface{}{
"temperature": int32(13),
},
map[string]string{
"device": "Disk1",
"model": "Model1",
"unit": "C",
"status": "",
},
},
{
map[string]interface{}{
"temperature": int32(14),
},
map[string]string{
"device": "Disk2",
"model": "Model2",
"unit": "C",
"status": "",
},
},
}
for _, test := range tests {
acc.AssertContainsTaggedFields(t, "hddtemp", test.fields, test.tags)
}
}