Skip to content

Commit

Permalink
fix libbeat conversion panic (#3272)
Browse files Browse the repository at this point in the history
* fix libbeat conversion panic

on 64_86 systems there is a interface conversion panic where a float64 is expected.

* adds Changelog entry
  • Loading branch information
paschdan authored and ruflin committed Jan 2, 2017
1 parent 743931c commit a23bf12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ https://github.com/elastic/beats/compare/v5.1.1...master[Check the HEAD diff]

- Fix service times-out at startup. {pull}3056[3056]
- Kafka module case sensitive host name matching. {pull}3193[3193]
- Fix interface conversion panic in couchbase module {pull}3272[3272]

*Packetbeat*

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/couchbase/node/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

type NodeSystemStats struct {
CPUUtilizationRate float32 `json:"cpu_utilization_rate"`
CPUUtilizationRate float64 `json:"cpu_utilization_rate"`
SwapTotal int64 `json:"swap_total"`
SwapUsed int64 `json:"swap_used"`
MemTotal int64 `json:"mem_total"`
Expand Down

0 comments on commit a23bf12

Please sign in to comment.