Skip to content

Commit

Permalink
fixes fields documentation for php_fpm metricbeat module (elastic#22332
Browse files Browse the repository at this point in the history
…) (elastic#22428)

Co-authored-by: EamonnTP <[email protected]>

Co-authored-by: Pavlos Daoglou <[email protected]>
  • Loading branch information
EamonnTP and dpavlos committed Nov 5, 2020
1 parent 26c5f16 commit 1428d58
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -915,3 +915,4 @@ field. You can revert this change by configuring tags for the module and omittin
==== Known Issue

*Journalbeat*

4 changes: 2 additions & 2 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -36658,7 +36658,7 @@ type: keyword
*`php_fpm.process.last_request_cpu`*::
+
--
The max amount of memory the last request consumed (it is always 0 if the process is not in Idle state because memory calculation is done when the request processing has terminated)
The CPU percentage the last request consumed. It's always 0 if the process is not in Idle state because CPU calculation is done when the request processing has terminated


type: long
Expand All @@ -36668,7 +36668,7 @@ type: long
*`php_fpm.process.last_request_memory`*::
+
--
The content length of the request (only with POST) (of the current request)
The max amount of memory the last request consumed. It's always 0 if the process is not in Idle state because memory calculation is done when the request processing has terminated


type: integer
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/php_fpm/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/php_fpm/process/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
- name: last_request_cpu
type: long
description: >
The max amount of memory the last request consumed (it is always 0 if the process is not in Idle state because memory calculation is done when the request processing has terminated)
The CPU percentage the last request consumed. It's always 0 if the process is not in Idle state because CPU calculation is done when the request processing has terminated
- name: last_request_memory
type: integer
description: >
The content length of the request (only with POST) (of the current request)
The max amount of memory the last request consumed. It's always 0 if the process is not in Idle state because memory calculation is done when the request processing has terminated

0 comments on commit 1428d58

Please sign in to comment.