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

Cherry-pick to master: [Docs] Fixed metricbeat redis exported field CPU descriptions (#25846) #26496

Merged
merged 2 commits into from
Jun 29, 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
4 changes: 2 additions & 2 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -47697,7 +47697,7 @@ type: scaled_float
*`redis.info.cpu.used.sys_children`*::
+
--
User CPU consumed by the Redis server.
System CPU consumed by the background processes.


type: scaled_float
Expand All @@ -47707,7 +47707,7 @@ type: scaled_float
*`redis.info.cpu.used.user`*::
+
--
System CPU consumed by the background processes.
User CPU consumed by the Redis server.


type: scaled_float
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/redis/fields.go

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

4 changes: 2 additions & 2 deletions metricbeat/module/redis/info/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@
- name: used.sys_children
type: scaled_float
description: >
User CPU consumed by the Redis server.
System CPU consumed by the background processes.
- name: used.user
type: scaled_float
description: >
System CPU consumed by the background processes.
User CPU consumed by the Redis server.
- name: used.user_children
type: scaled_float
description: >
Expand Down