[influxdb] site_code tag to node
This commit is contained in:
parent
f135249795
commit
5d6f046e39
|
@ -31,6 +31,9 @@ func nodeToInflux(node *runtime.Node) (tags models.Tags, fields models.Fields) {
|
|||
|
||||
if nodeinfo := node.Nodeinfo; nodeinfo != nil {
|
||||
tags.SetString("hostname", nodeinfo.Hostname)
|
||||
if len(nodeinfo.System.SiteCode) > 0 {
|
||||
tags.SetString("site_code", nodeinfo.System.SiteCode)
|
||||
}
|
||||
if owner := nodeinfo.Owner; owner != nil {
|
||||
tags.SetString("owner", owner.Contact)
|
||||
}
|
||||
|
|
|
@ -49,6 +49,9 @@ func TestToInflux(t *testing.T) {
|
|||
Owner: &data.Owner{
|
||||
Contact: "nobody",
|
||||
},
|
||||
System: data.System{
|
||||
SiteCode: "ffhb",
|
||||
},
|
||||
Wireless: &data.Wireless{
|
||||
TxPower24: 3,
|
||||
Channel24: 4,
|
||||
|
@ -70,6 +73,7 @@ func TestToInflux(t *testing.T) {
|
|||
|
||||
assert.Equal("foobar", tags.GetString("nodeid"))
|
||||
assert.Equal("nobody", tags.GetString("owner"))
|
||||
assert.Equal("ffhb", tags.GetString("site_code"))
|
||||
assert.Equal(0.5, fields["load"])
|
||||
assert.Equal(0, fields["neighbours.lldp"])
|
||||
assert.Equal(1, fields["neighbours.batadv"])
|
||||
|
|
Loading…
Reference in New Issue