Skip to content

Commit

Permalink
Make system.memory.actual.free equal to system.memory.free on Windows (
Browse files Browse the repository at this point in the history
  • Loading branch information
monicasarbu committed Oct 14, 2016
1 parent 898c7ec commit c88d88d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ https://github.com/elastic/beats/compare/v5.0.0-rc1...5.0[Check the HEAD diff]
- Fix high CPU usage on macOS when encountering processes with long command lines. {issue}2747[2747]
- Fix high value of `system.memory.actual.free` and `system.memory.actual.used`. {issue}2653[2653]
- Change several `OpenProcess` calls on Windows to request the lowest possible access provilege. {issue}1897[1897]
- Fix system.memory.actual.free high value on Windows. {issue}2653[2653]

*Packetbeat*

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3998,7 +3998,7 @@ type: long

format: bytes

Actual free memory in bytes. It is calculated based on the OS. On Linux it consists of the free memory plus caches and buffers. On OSX it is a sum of free memory and the inactive memory. On Windows, it is the amount of unreserved and uncommitted memory currently in the user-mode portion of the virtual address space of the calling process.
Actual free memory in bytes. It is calculated based on the OS. On Linux it consists of the free memory plus caches and buffers. On OSX it is a sum of free memory and the inactive memory. On Windows, it is equal to `system.memory.free`.


[float]
Expand Down
5 changes: 2 additions & 3 deletions metricbeat/etc/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2488,9 +2488,8 @@
format: bytes
description: >
Actual free memory in bytes. It is calculated based on the OS. On Linux it consists of the free memory
plus caches and buffers. On OSX it is a sum of free memory and the inactive memory. On Windows, it is the
amount of unreserved and uncommitted memory currently in the user-mode portion of the virtual address space
of the calling process.
plus caches and buffers. On OSX it is a sum of free memory and the inactive memory. On Windows, it is equal
to `system.memory.free`.
- name: used.pct
type: scaled_float
Expand Down
5 changes: 2 additions & 3 deletions metricbeat/module/system/memory/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@
format: bytes
description: >
Actual free memory in bytes. It is calculated based on the OS. On Linux it consists of the free memory
plus caches and buffers. On OSX it is a sum of free memory and the inactive memory. On Windows, it is the
amount of unreserved and uncommitted memory currently in the user-mode portion of the virtual address space
of the calling process.
plus caches and buffers. On OSX it is a sum of free memory and the inactive memory. On Windows, it is equal
to `system.memory.free`.
- name: used.pct
type: scaled_float
Expand Down

0 comments on commit c88d88d

Please sign in to comment.