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

Fix type for HAProxy health.last field #4410

Merged
merged 1 commit into from
May 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ https://github.com/elastic/beats/compare/v6.0.0-alpha1...master[Check the HEAD d
- Add filtering to system filesystem metricset to remove relative mountpoints like those
from Linux network namespaces. {pull}4370[4370]
- Remove unnecessary print statement in schema apis {pull}4355[4355]
- Fix type of field `haproxy.stat.check.health.last`. {issue}4407[4407]

*Packetbeat*
- Enable memcache filtering only if a port is specified in the config file. {issue}4335[4335]
Expand Down
4 changes: 3 additions & 1 deletion metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -5188,15 +5188,17 @@ Time in ms that it took to finish the last health check.
[float]
=== haproxy.stat.check.health.last

type: long
type: keyword

The result of the last health check.


[float]
=== haproxy.stat.check.health.fail

type: long

Number of failed checks.


[float]
Expand Down
4 changes: 3 additions & 1 deletion metricbeat/module/haproxy/stat/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,12 +298,14 @@
Time in ms that it took to finish the last health check.

- name: health.last
type: long
type: keyword
description: >
The result of the last health check.

- name: health.fail
type: long
description: >
Number of failed checks.

- name: agent.last
type: integer
Expand Down