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 formatting to pressure fields in system/process #27374

Merged
merged 3 commits into from
Aug 16, 2021
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 @@ -402,6 +402,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Change `server_status_path` default setting to `nginx_status` for the `nginx` module. {pull}26642[26642]
- Fix cloudwatch metricset collecting duplicate data points. {pull}27248[27248]
- Fix flaky test TestAddCounterInvalidArgWhenQueryClosed. {issue}27312[27312] {pull}27313[27313]
- Add percent formatters to system/process {pull}27374[27374]

*Packetbeat*

Expand Down
24 changes: 24 additions & 0 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -53352,6 +53352,8 @@ Pressure over 10 seconds

type: float

format: percent

--

*`system.process.cgroup.cpu.pressure.some.60.pct`*::
Expand All @@ -53361,6 +53363,8 @@ Pressure over 60 seconds

type: float

format: percent

--

*`system.process.cgroup.cpu.pressure.some.300.pct`*::
Expand All @@ -53370,6 +53374,8 @@ Pressure over 300 seconds

type: float

format: percent

--

*`system.process.cgroup.cpu.pressure.some.total`*::
Expand All @@ -53379,6 +53385,8 @@ total Some pressure time

type: long

format: percent

--

[float]
Expand All @@ -53394,6 +53402,8 @@ Pressure over 10 seconds

type: float

format: percent

--

*`system.process.cgroup.cpu.pressure.full.60.pct`*::
Expand All @@ -53403,6 +53413,8 @@ Pressure over 60 seconds

type: float

format: percent

--

*`system.process.cgroup.cpu.pressure.full.300.pct`*::
Expand All @@ -53412,6 +53424,8 @@ Pressure over 300 seconds

type: float

format: percent

--

*`system.process.cgroup.cpu.pressure.full.total`*::
Expand Down Expand Up @@ -54262,6 +54276,8 @@ Pressure over 10 seconds

type: float

format: percent

--

*`system.process.cgroup.io.pressure.full.60.pct`*::
Expand All @@ -54271,6 +54287,8 @@ Pressure over 60 seconds

type: float

format: percent

--

*`system.process.cgroup.io.pressure.full.300.pct`*::
Expand All @@ -54280,6 +54298,8 @@ Pressure over 300 seconds

type: float

format: percent

--

*`system.process.cgroup.io.pressure.full.total`*::
Expand All @@ -54304,6 +54324,8 @@ Pressure over 10 seconds

type: float

format: percent

--

*`system.process.cgroup.io.pressure.some.60.pct`*::
Expand All @@ -54313,6 +54335,8 @@ Pressure over 60 seconds

type: float

format: percent

--

*`system.process.cgroup.io.pressure.some.300.pct`*::
Expand Down
Loading