Skip to content

Commit

Permalink
Fix authentication_failure event.type for security module (elastic#12393
Browse files Browse the repository at this point in the history
)

Change authentication_failed to authentication_failure in the event.type field added by the Security module.

Relates elastic#11651

(cherry picked from commit 97404f9)
  • Loading branch information
andrewkroh committed Jun 3, 2019
1 parent c067d50 commit 9c624cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var security = (function () {
var addAuthFailed = new processor.AddFields({
fields: {
"event.category": "authentication",
"event.type": "authentication_failed",
"event.type": "authentication_failure",
},
target: "",
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@
"category": "authentication",
"code": 4625,
"kind": "event",
"type": "authentication_failed"
"type": "authentication_failure"
},
"log": {
"level": "information"
Expand Down

0 comments on commit 9c624cf

Please sign in to comment.