Skip to content
New issue

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

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

Already on GitHub? # to your account

Fix missing swap fields in linux/memory #30774

Merged
merged 2 commits into from
Mar 10, 2022
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.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...main[Check the HEAD dif
- Enhance metricbeat on openshift documentation {pull}30054[30054]
- Fixed missing ZooKeeper metrics due compatibility issues with versions >= 3.6.0 {pull}30068[30068]
- Fix Docker module: rename fields on dashboards. {pull}30500[30500]
- Add back missing metrics to system/linux. {pull}30774[30774]

*Packetbeat*

Expand Down
94 changes: 94 additions & 0 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -46458,6 +46458,100 @@ format: bytes

--

[float]
=== swap

This group contains statistics related to the swap memory usage on the system.


*`linux.memory.swap.total`*::
+
--
Total swap memory.


type: long

format: bytes

--

*`linux.memory.swap.used.bytes`*::
+
--
Used swap memory.


type: long

format: bytes

--

*`linux.memory.swap.free`*::
+
--
Available swap memory.


type: long

format: bytes

--

*`linux.memory.swap.used.pct`*::
+
--
The percentage of used swap memory.


type: scaled_float

format: percent

--

*`linux.memory.swap.in.pages`*::
+
--
Pages swapped in.


type: long

--

*`linux.memory.swap.out.pages`*::
+
--
Pages swapped out.


type: long

--

*`linux.memory.swap.readahead.cached`*::
+
--
Swap readahead pages hit from swap_ra_hit.


type: long

--

*`linux.memory.swap.readahead.pages`*::
+
--
Pages swapped based on readahead predictions.


type: long

--

[float]
=== pageinfo

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/linux/fields.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading