Skip to content

Commit

Permalink
Add back missing process command-line fields (elastic#8258)
Browse files Browse the repository at this point in the history
The fields `cmdline` and `client_cmdline`, that were recently added to
packetbeat, were missing as the feature was merged in parallel to a
refactor of the fields generation.
  • Loading branch information
adriansr committed Sep 7, 2018
1 parent c747f04 commit 3ca78e7
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ https://github.com/elastic/beats/compare/v6.4.0...master[Check the HEAD diff]

- Fixed a seccomp related error where the `fcntl64` syscall was not permitted
on 32-bit Linux and the sniffer failed to start. {issue}7839[7839]
- Added missing `cmdline` and `client_cmdline` fields to index template. {pull}8258[8258]

*Winlogbeat*

Expand Down
8 changes: 8 additions & 0 deletions packetbeat/_meta/fields.common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,18 @@
description: >
The name of the process that served the transaction.
- name: cmdline
description: >
The command-line of the process that served the transaction.
- name: client_proc
description: >
The name of the process that initiated the transaction.
- name: client_cmdline
description: >
The command-line of the process that initiated the transaction.
- name: release
description: >
The software release of the service serving the transaction.
Expand Down
16 changes: 16 additions & 0 deletions packetbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -1492,6 +1492,14 @@ The layer 4 port of the process that served the transaction.
The name of the process that served the transaction.
--
*`cmdline`*::
+
--
The command-line of the process that served the transaction.
--
*`client_proc`*::
Expand All @@ -1500,6 +1508,14 @@ The name of the process that served the transaction.
The name of the process that initiated the transaction.
--
*`client_cmdline`*::
+
--
The command-line of the process that initiated the transaction.
--
*`release`*::
Expand Down
Loading

0 comments on commit 3ca78e7

Please sign in to comment.