We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f4e43 commit 9b2f214Copy full SHA for 9b2f214
CHANGELOG.next.md
@@ -27,6 +27,7 @@ Thanks, you're awesome :-) -->
27
* Added missing field reuse of `pe` at `process.parent.pe` #868
28
* Added `span.id` to the tracing fieldset, for additional log correlation (#882)
29
* Added `event.reason` for the reason why an event's outcome or action was taken. #907
30
+* Added `related.hosts` to capture all hostnames and host identifiers on an event. #913
31
32
#### Improvements
33
code/go/ecs/related.go
docs/field-details.asciidoc
@@ -4610,6 +4610,22 @@ Note: this field should contain an array of values.
4610
4611
4612
4613
+| extended
4614
+
4615
+// ===============================================================
4616
4617
+| related.hosts
4618
+| All hostnames or other host identifiers seen on your event. Example identifiers include FQDNs, domain names, workstation names, or aliases.
4619
4620
+type: keyword
4621
4622
4623
+Note: this field should contain an array of values.
4624
4625
4626
4627
4628
4629
| extended
4630
4631
// ===============================================================
generated/beats/fields.ecs.yml
@@ -3819,6 +3819,13 @@
3819
using it to search for hashes can help in situations where you're unsure what
3820
the hash algorithm is (and therefore which key name to search).
3821
default_field: false
3822
+ - name: hosts
3823
+ level: extended
3824
+ type: keyword
3825
+ ignore_above: 1024
3826
+ description: All hostnames or other host identifiers seen on your event. Example
3827
+ identifiers include FQDNs, domain names, workstation names, or aliases.
3828
+ default_field: false
3829
- name: ip
3830
level: extended
3831
type: ip
generated/csv/fields.csv
@@ -442,6 +442,7 @@ ECS_Version,Indexed,Field_Set,Field,Type,Level,Normalization,Example,Description
442
1.6.0-dev,true,registry,registry.path,keyword,core,,HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe\Debugger,"Full path, including hive, key and value"
443
1.6.0-dev,true,registry,registry.value,keyword,core,,Debugger,Name of the value written.
444
1.6.0-dev,true,related,related.hash,keyword,extended,array,,All the hashes seen on your event.
445
+1.6.0-dev,true,related,related.hosts,keyword,extended,array,,All the host identifiers seen on your event.
446
1.6.0-dev,true,related,related.ip,ip,extended,array,,All of the IPs seen on your event.
447
1.6.0-dev,true,related,related.user,keyword,extended,array,,All the user names seen on your event.
448
1.6.0-dev,true,rule,rule.author,keyword,extended,array,['Star-Lord'],Rule author
generated/ecs/ecs_flat.yml
@@ -5717,6 +5717,18 @@ related.hash:
5717
- array
5718
short: All the hashes seen on your event.
5719
type: keyword
5720
+related.hosts:
5721
+ dashed_name: related-hosts
5722
5723
5724
+ flat_name: related.hosts
5725
5726
5727
+ name: hosts
5728
+ normalize:
5729
+ - array
5730
+ short: All the host identifiers seen on your event.
5731
5732
related.ip:
5733
dashed_name: related-ip
5734
description: All of the IPs seen on your event.
generated/ecs/ecs_nested.yml
@@ -6807,6 +6807,18 @@ related:
6807
6808
6809
6810
+ related.hosts:
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
generated/elasticsearch/6/template.json
@@ -2093,6 +2093,10 @@
2093
"ignore_above": 1024,
2094
"type": "keyword"
2095
},
2096
+ "hosts": {
2097
+ "ignore_above": 1024,
2098
+ "type": "keyword"
2099
+ },
2100
"ip": {
2101
"type": "ip"
2102
generated/elasticsearch/7/template.json
@@ -2092,6 +2092,10 @@
2092
schemas/related.yml
@@ -43,3 +43,13 @@
43
44
normalize:
45
46
47
48
49
50
51
+ description: >
52
+ All hostnames or other host identifiers seen on your event. Example
53
54
55
0 commit comments