Skip to content

Commit

Permalink
Collect Events.* fields for telemetry (#107976)
Browse files Browse the repository at this point in the history
* Collect Events.* fields for telemetry
* Add process.code_signature
  • Loading branch information
rw-access authored Aug 17, 2021
1 parent 9d1a8a8 commit 0eae57b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,7 @@ const allowlistProcessFields: AllowlistFields = {
args: true,
name: true,
executable: true,
code_signature: true,
command_line: true,
hash: true,
pid: true,
Expand Down Expand Up @@ -555,8 +556,10 @@ const allowlistEventFields: AllowlistFields = {
data_stream: true,
ecs: true,
elastic: true,
// behavioral protection re-nests some field sets under events.*
// behavioral protection re-nests some field sets under events.* (< 7.15)
events: allowlistBaseEventFields,
// behavioral protection re-nests some field sets under Events.* (>=7.15)
Events: allowlistBaseEventFields,
rule: {
id: true,
name: true,
Expand Down

0 comments on commit 0eae57b

Please sign in to comment.