parent
3ca5290e3f
commit
dfc10ed8cb
|
@ -5,6 +5,7 @@
|
||||||
### Features
|
### Features
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
|
- [#748](https://github.com/influxdata/telegraf/issues/748): Fix sensor plugin split on ":"
|
||||||
|
|
||||||
## v0.10.4.1
|
## v0.10.4.1
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ func (s *Sensors) Gather(acc telegraf.Accumulator) error {
|
||||||
var found bool
|
var found bool
|
||||||
|
|
||||||
for _, sensor := range s.Sensors {
|
for _, sensor := range s.Sensors {
|
||||||
parts := strings.SplitN(":", sensor, 2)
|
parts := strings.SplitN(sensor, ":", 2)
|
||||||
|
|
||||||
if parts[0] == chipName {
|
if parts[0] == chipName {
|
||||||
if parts[1] == "*" || parts[1] == featureLabel {
|
if parts[1] == "*" || parts[1] == featureLabel {
|
||||||
|
|
Loading…
Reference in New Issue