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

correct format for memory module in dockerbeat #4619

Merged
merged 2 commits into from
Jul 11, 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 @@ -143,6 +143,7 @@ https://github.com/elastic/beats/compare/v6.0.0-alpha1...v6.0.0-alpha2[View comm

*Metricbeat*

- Set correct format for percent fields in memory module. {pull}4619[4619]
- Fix a debug statement that said a module wrapper had stopped when it hadn't. {pull}4264[4264]
- Use MemAvailable value from /proc/meminfo on Linux 3.14. {pull}4316[4316]
- Fix panic when events were dropped by filters. {issue}4327[4327]
Expand Down
4 changes: 4 additions & 0 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2063,6 +2063,8 @@ Total memory resident set size.

type: scaled_float

format: percentage

Memory resident set size percentage.


Expand All @@ -2088,6 +2090,8 @@ Max memory usage.

type: scaled_float

format: percentage

Memory usage percentage.


Expand Down
2 changes: 2 additions & 0 deletions metricbeat/module/docker/memory/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
Total memory resident set size.
- name: pct
type: scaled_float
format: percentage
description: >
Memory resident set size percentage.
- name: usage
Expand All @@ -39,6 +40,7 @@
Max memory usage.
- name: pct
type: scaled_float
format: percentage
description: >
Memory usage percentage.
- name: total
Expand Down