Skip to content

Commit

Permalink
Change event.type to start
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-gr committed Jul 6, 2020
1 parent d11194e commit c233fe3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion x-pack/filebeat/module/gsuite/saml/config/pipeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var saml = (function () {
var processor = require("processor");

var categorizeEvent = function(evt) {
evt.Put("event.type", ["info"]);
evt.Put("event.type", ["start"]);
evt.Put("event.category", ["authentication"]);
switch (evt.Get("event.action")) {
case "login_failure":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"event.outcome": "failure",
"event.provider": "saml",
"event.type": [
"info"
"start"
],
"fileset.name": "saml",
"gsuite.actor.type": "USER",
Expand Down Expand Up @@ -80,7 +80,7 @@
"event.outcome": "success",
"event.provider": "saml",
"event.type": [
"info"
"start"
],
"fileset.name": "saml",
"gsuite.actor.type": "USER",
Expand Down

0 comments on commit c233fe3

Please sign in to comment.