Skip to content

Commit

Permalink
Clarify absolute path, add missing process arg in example
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Martin committed Dec 3, 2018
1 parent 96feb62 commit 67e4030
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,8 @@ These fields contain information about a process. These fields can help you corr
| <a name="process.pid"></a>process.pid | Process id. | core | long | |
| <a name="process.name"></a>process.name | Process name.<br/>Sometimes called program name or similar. | extended | keyword | `ssh` |
| <a name="process.ppid"></a>process.ppid | Process parent id. | extended | long | |
| <a name="process.args"></a>process.args | Process arguments.<br/>May be filtered to protect sensitive information. | extended | keyword | `['-l', 'user', '10.0.0.16']` |
| <a name="process.executable"></a>process.executable | Full path to the process executable. | extended | keyword | `/usr/bin/ssh` |
| <a name="process.args"></a>process.args | Process arguments.<br/>May be filtered to protect sensitive information. | extended | keyword | `['ssh', '-l', 'user', '10.0.0.16']` |
| <a name="process.executable"></a>process.executable | Absolute path to the process executable. | extended | keyword | `/usr/bin/ssh` |
| <a name="process.title"></a>process.title | Process title.<br/>The proctitle, some times the same as process name. Can also be different: for example a browser setting its title to the web page currently opened. | extended | keyword | |


Expand Down
4 changes: 2 additions & 2 deletions fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -993,13 +993,13 @@
Process arguments.
May be filtered to protect sensitive information.
example: ["-l", "user", "10.0.0.16"]
example: ["ssh", "-l", "user", "10.0.0.16"]

- name: executable
level: extended
type: keyword
description: >
Full path to the process executable.
Absolute path to the process executable.
example: /usr/bin/ssh

- name: title
Expand Down
2 changes: 1 addition & 1 deletion schema.csv
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ os.kernel,keyword,extended,4.4.0-112-generic
os.name,keyword,extended,Mac OS X
os.platform,keyword,extended,darwin
os.version,keyword,extended,10.12.6-rc2
process.args,keyword,extended,"['-l', 'user', '10.0.0.16']"
process.args,keyword,extended,"['ssh', '-l', 'user', '10.0.0.16']"
process.executable,keyword,extended,/usr/bin/ssh
process.name,keyword,extended,ssh
process.pid,long,core,
Expand Down
4 changes: 2 additions & 2 deletions schemas/process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@
Process arguments.
May be filtered to protect sensitive information.
example: ["-l", "user", "10.0.0.16"]
example: ["ssh", "-l", "user", "10.0.0.16"]

- name: executable
level: extended
type: keyword
description: >
Full path to the process executable.
Absolute path to the process executable.
example: /usr/bin/ssh

- name: title
Expand Down

0 comments on commit 67e4030

Please sign in to comment.