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

[1.x] Add missing process.thread.name to experimental definitions (#1103) #1106

Merged
merged 1 commit into from
Nov 10, 2020
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ All notable changes to this project will be documented in this file based on the
* Added network directions ingress and egress. #945
* Added `threat.technique.subtechnique` to capture MITRE ATT&CK® subtechniques. #951
* Added `configuration` as an allowed `event.category`. #963
* Added a new directory with experimental artifacts, which includes all changes
from RFCs that have reached stage 2. #993, #1053

#### Improvements

Expand Down Expand Up @@ -45,8 +47,6 @@ All notable changes to this project will be documented in this file based on the
* Added `ignore_above` and `normalizer` support for keyword multi-fields. #971
* Added ability to supply free-form usage documentation per fieldset. #988
* Added `--oss` flag for users who want to generate ECS templates for use on OSS clusters. #991
* Added a new directory with experimental artifacts, which includes all changes
from RFCs that have reached stage 2. #993

#### Improvements

Expand Down
6 changes: 2 additions & 4 deletions experimental/generated/beats/fields.ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3566,8 +3566,7 @@
default_field: false
- name: parent.thread.name
level: extended
type: keyword
ignore_above: 1024
type: wildcard
description: Thread name.
example: thread-0
default_field: false
Expand Down Expand Up @@ -3681,8 +3680,7 @@
example: 4242
- name: thread.name
level: extended
type: keyword
ignore_above: 1024
type: wildcard
description: Thread name.
example: thread-0
- name: title
Expand Down
4 changes: 2 additions & 2 deletions experimental/generated/csv/fields.csv
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ ECS_Version,Indexed,Field_Set,Field,Type,Level,Normalization,Example,Description
1.8.0-dev,true,process,process.parent.ppid,long,extended,,4241,Parent process' pid.
1.8.0-dev,true,process,process.parent.start,date,extended,,2016-05-23T08:05:34.853Z,The time the process started.
1.8.0-dev,true,process,process.parent.thread.id,long,extended,,4242,Thread ID.
1.8.0-dev,true,process,process.parent.thread.name,keyword,extended,,thread-0,Thread name.
1.8.0-dev,true,process,process.parent.thread.name,wildcard,extended,,thread-0,Thread name.
1.8.0-dev,true,process,process.parent.title,wildcard,extended,,,Process title.
1.8.0-dev,true,process,process.parent.title.text,text,extended,,,Process title.
1.8.0-dev,true,process,process.parent.uptime,long,extended,,1325,Seconds the process has been up.
Expand All @@ -431,7 +431,7 @@ ECS_Version,Indexed,Field_Set,Field,Type,Level,Normalization,Example,Description
1.8.0-dev,true,process,process.ppid,long,extended,,4241,Parent process' pid.
1.8.0-dev,true,process,process.start,date,extended,,2016-05-23T08:05:34.853Z,The time the process started.
1.8.0-dev,true,process,process.thread.id,long,extended,,4242,Thread ID.
1.8.0-dev,true,process,process.thread.name,keyword,extended,,thread-0,Thread name.
1.8.0-dev,true,process,process.thread.name,wildcard,extended,,thread-0,Thread name.
1.8.0-dev,true,process,process.title,wildcard,extended,,,Process title.
1.8.0-dev,true,process,process.title.text,text,extended,,,Process title.
1.8.0-dev,true,process,process.uptime,long,extended,,1325,Seconds the process has been up.
Expand Down
6 changes: 2 additions & 4 deletions experimental/generated/ecs/ecs_flat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5385,13 +5385,12 @@ process.parent.thread.name:
description: Thread name.
example: thread-0
flat_name: process.parent.thread.name
ignore_above: 1024
level: extended
name: thread.name
normalize: []
original_fieldset: process
short: Thread name.
type: keyword
type: wildcard
process.parent.title:
dashed_name: process-parent-title
description: 'Process title.
Expand Down Expand Up @@ -5582,12 +5581,11 @@ process.thread.name:
description: Thread name.
example: thread-0
flat_name: process.thread.name
ignore_above: 1024
level: extended
name: thread.name
normalize: []
short: Thread name.
type: keyword
type: wildcard
process.title:
dashed_name: process-title
description: 'Process title.
Expand Down
6 changes: 2 additions & 4 deletions experimental/generated/ecs/ecs_nested.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6427,13 +6427,12 @@ process:
description: Thread name.
example: thread-0
flat_name: process.parent.thread.name
ignore_above: 1024
level: extended
name: thread.name
normalize: []
original_fieldset: process
short: Thread name.
type: keyword
type: wildcard
process.parent.title:
dashed_name: process-parent-title
description: 'Process title.
Expand Down Expand Up @@ -6624,12 +6623,11 @@ process:
description: Thread name.
example: thread-0
flat_name: process.thread.name
ignore_above: 1024
level: extended
name: thread.name
normalize: []
short: Thread name.
type: keyword
type: wildcard
process.title:
dashed_name: process-title
description: 'Process title.
Expand Down
6 changes: 2 additions & 4 deletions experimental/generated/elasticsearch/7/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -1904,8 +1904,7 @@
"type": "long"
},
"name": {
"ignore_above": 1024,
"type": "keyword"
"type": "wildcard"
}
}
},
Expand Down Expand Up @@ -1981,8 +1980,7 @@
"type": "long"
},
"name": {
"ignore_above": 1024,
"type": "keyword"
"type": "wildcard"
}
}
},
Expand Down
2 changes: 2 additions & 0 deletions experimental/schemas/process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
type: wildcard
- name: name
type: wildcard
- name: thread.name
type: wildcard
- name: title
type: wildcard
- name: working_directory
Expand Down