Skip to content

Commit

Permalink
Fix Winlogbeat's sysmon event.type with a colon (elastic#13677)
Browse files Browse the repository at this point in the history
The sysmon module in Winlogbeat was creating the field `event.type:`
with a colon at the end.

Fixes elastic#13676
  • Loading branch information
adriansr authored Sep 13, 2019
1 parent 2613715 commit 71eee76
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions x-pack/winlogbeat/module/sysmon/config/winlogbeat-sysmon.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ var sysmon = (function () {
.AddFields({
"fields": {
"event.category": "process",
"event.type:": "process_start",
"event.type": "process_start",
},
"target": "",
})
Expand Down Expand Up @@ -489,7 +489,7 @@ var sysmon = (function () {
.AddFields({
"fields": {
"event.category": "process",
"event.type:": "process_end",
"event.type": "process_end",
},
"target": "",
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"code": 1,
"kind": "event",
"module": "sysmon",
"type:": "process_start"
"type": "process_start"
},
"hash": {
"sha1": "ac93c3b38e57a2715572933dbcb2a1c2892dbc5e"
Expand Down Expand Up @@ -148,7 +148,7 @@
"code": 1,
"kind": "event",
"module": "sysmon",
"type:": "process_start"
"type": "process_start"
},
"hash": {
"sha1": "6df8163a6320b80b60733f9d62e2f39b4b16b678"
Expand Down Expand Up @@ -222,7 +222,7 @@
"code": 5,
"kind": "event",
"module": "sysmon",
"type:": "process_end"
"type": "process_end"
},
"log": {
"level": "information"
Expand Down Expand Up @@ -263,7 +263,7 @@
"code": 5,
"kind": "event",
"module": "sysmon",
"type:": "process_end"
"type": "process_end"
},
"log": {
"level": "information"
Expand Down Expand Up @@ -304,7 +304,7 @@
"code": 1,
"kind": "event",
"module": "sysmon",
"type:": "process_start"
"type": "process_start"
},
"hash": {
"sha1": "5a4c0e82ff95c9fb762d46a696ef9f1b68001c21"
Expand Down Expand Up @@ -1340,7 +1340,7 @@
"code": 5,
"kind": "event",
"module": "sysmon",
"type:": "process_end"
"type": "process_end"
},
"log": {
"level": "information"
Expand Down Expand Up @@ -1381,7 +1381,7 @@
"code": 5,
"kind": "event",
"module": "sysmon",
"type:": "process_end"
"type": "process_end"
},
"log": {
"level": "information"
Expand Down Expand Up @@ -1606,7 +1606,7 @@
"code": 5,
"kind": "event",
"module": "sysmon",
"type:": "process_end"
"type": "process_end"
},
"log": {
"level": "information"
Expand Down Expand Up @@ -1732,4 +1732,4 @@
"version": 4
}
}
]
]

0 comments on commit 71eee76

Please sign in to comment.