Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add group_measurements_by_instance_label flag to perfmon configuration #8688

Merged
merged 9 commits into from
Feb 28, 2019
Prev Previous commit
Next Next commit
Use correct string conversion.
  • Loading branch information
Joshua Smith authored and Joshua Smith committed Nov 8, 2018
commit f7c07de4dbf237644fa7530b1f944fba931ea2f1
2 changes: 1 addition & 1 deletion metricbeat/module/windows/perfmon/pdh_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ func (r *PerfmonReader) Read() ([]mb.Event, error) {
eventKey = val.Instance
} else {
// Send every measurement as an individual event
eventKey = counterPath + str(ind)
eventKey = counterPath + strconv.Itoa(ind)
}

// Create a new event if the key doesn't exist in the map
Expand Down