-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f49f61
commit e9e01be
Showing
12 changed files
with
301 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
137 changes: 137 additions & 0 deletions
137
filebeat/module/elasticsearch/audit/ingest/pipeline-json.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
{ | ||
"description": "Pipeline for parsing elasticsearch audit logs in JSON format", | ||
"processors": [ | ||
{ | ||
"json": { | ||
"field": "message", | ||
"target_field": "elasticsearch.audit" | ||
} | ||
}, | ||
{ | ||
"dot_expander": { | ||
"field": "event.action", | ||
"path": "elasticsearch.audit" | ||
} | ||
}, | ||
{ | ||
"rename": { | ||
"field": "elasticsearch.audit.event.action", | ||
"target_field": "event.action" | ||
} | ||
}, | ||
{ | ||
"dot_expander": { | ||
"field": "event.type", | ||
"path": "elasticsearch.audit" | ||
} | ||
}, | ||
{ | ||
"rename": { | ||
"field": "elasticsearch.audit.event.type", | ||
"target_field": "elasticsearch.audit.layer" | ||
} | ||
}, | ||
{ | ||
"dot_expander": { | ||
"field": "origin.address", | ||
"path": "elasticsearch.audit" | ||
} | ||
}, | ||
{ | ||
"grok": { | ||
"field": "elasticsearch.audit.origin.address", | ||
"patterns": [ | ||
"\\[%{IPORHOST:source.ip}\\]:%{INT:source.port:int}", | ||
"%{IPORHOST:source.ip}:%{INT:source.port:int}" | ||
] | ||
} | ||
}, | ||
{ | ||
"remove": { | ||
"field": "elasticsearch.audit.origin.address" | ||
} | ||
}, | ||
{ | ||
"dot_expander": { | ||
"field": "url.path", | ||
"path": "elasticsearch.audit" | ||
} | ||
}, | ||
{ | ||
"dot_expander": { | ||
"field": "url.query", | ||
"path": "elasticsearch.audit" | ||
} | ||
}, | ||
{ | ||
"set": { | ||
"if": "ctx.elasticsearch.audit?.url?.path != null && ctx.elasticsearch.audit?.url?.query == null", | ||
"field": "url.original", | ||
"value": "{{elasticsearch.audit.url.path}}" | ||
} | ||
}, | ||
{ | ||
"set": { | ||
"if": "ctx.elasticsearch.audit?.url?.path != null && ctx.elasticsearch.audit?.url?.query != null", | ||
"field": "url.original", | ||
"value": "{{elasticsearch.audit.url.path}}?{{elasticsearch.audit.url.query}}" | ||
} | ||
}, | ||
{ | ||
"remove": { | ||
"if": "ctx.elasticsearch.audit?.url?.path != null", | ||
"field": "elasticsearch.audit.url.path" | ||
} | ||
}, | ||
{ | ||
"remove": { | ||
"if": "ctx.elasticsearch.audit?.url?.query != null", | ||
"field": "elasticsearch.audit.url.query" | ||
} | ||
}, | ||
{ | ||
"dot_expander": { | ||
"field": "node.id", | ||
"path": "elasticsearch.audit" | ||
} | ||
}, | ||
{ | ||
"dot_expander": { | ||
"field": "node.name", | ||
"path": "elasticsearch.audit" | ||
} | ||
}, | ||
{ | ||
"rename": { | ||
"field": "elasticsearch.audit.node", | ||
"target_field": "elasticsearch.node" | ||
} | ||
}, | ||
{ | ||
"dot_expander": { | ||
"field": "user.name", | ||
"path": "elasticsearch.audit" | ||
} | ||
}, | ||
{ | ||
"rename": { | ||
"field": "elasticsearch.audit.user.name", | ||
"target_field": "user.name" | ||
} | ||
}, | ||
{ | ||
"dot_expander": { | ||
"field": "audit.@timestamp", | ||
"path": "elasticsearch" | ||
} | ||
} | ||
], | ||
"on_failure": [ | ||
{ | ||
"set": { | ||
"field": "error.message", | ||
"value": "{{ _ingest.on_failure_message }}" | ||
} | ||
} | ||
] | ||
} |
63 changes: 63 additions & 0 deletions
63
filebeat/module/elasticsearch/audit/ingest/pipeline-plaintext.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"description": "Pipeline for parsing elasticsearch audit logs in plaintext format", | ||
"processors": [ | ||
{ | ||
"grok": { | ||
"field": "message", | ||
"pattern_definitions": { | ||
"ES_TIMESTAMP": "\\[%{TIMESTAMP_ISO8601:elasticsearch.audit.@timestamp}\\]", | ||
"ES_NODE_NAME": "(\\[%{DATA:elasticsearch.node.name}\\])?", | ||
"ES_AUDIT_LAYER": "\\[%{WORD:elasticsearch.audit.layer}\\]", | ||
"ES_AUDIT_EVENT_TYPE": "\\[%{WORD:event.type}\\]", | ||
"ES_AUDIT_ORIGIN_TYPE": "(origin_type\\=\\[%{WORD:elasticsearch.audit.origin.type}\\])?", | ||
"ES_AUDIT_ORIGIN_ADDRESS": "(origin_address\\=\\[%{IPORHOST:source.ip}\\])?", | ||
"ES_AUDIT_PRINCIPAL": "(principal\\=\\[%{WORD:user.name}\\])?", | ||
"ES_AUDIT_REALM": "(realm\\=\\[%{WORD:elasticsearch.audit.user.realm}\\])?", | ||
"ES_AUDIT_ROLES": "(roles\\=\\[%{DATA:elasticsearch.audit.user.roles}\\])?", | ||
"ES_AUDIT_ACTION": "(action\\=\\[%{DATA:elasticsearch.audit.action}(\\[%{DATA:elasticsearch.audit.sub_action}\\])?\\])?", | ||
"ES_AUDIT_URI": "(uri=\\[%{DATA:url.original}\\])?", | ||
"ES_AUDIT_INDICES": "(indices\\=\\[%{DATA:elasticsearch.audit.indices}\\])?", | ||
"ES_AUDIT_REQUEST": "(request\\=\\[%{WORD:elasticsearch.audit.request}\\])?", | ||
"ES_AUDIT_REQUEST_BODY": "(request_body\\=\\[%{DATA:http.request.body.content}\\])?" | ||
}, | ||
"patterns": [ | ||
"%{ES_TIMESTAMP}\\s*%{ES_NODE_NAME}\\s*%{ES_AUDIT_LAYER}\\s*%{ES_AUDIT_EVENT_TYPE}\\s*%{ES_AUDIT_ORIGIN_TYPE},?\\s*%{ES_AUDIT_ORIGIN_ADDRESS},?\\s*%{ES_AUDIT_PRINCIPAL},?\\s*%{ES_AUDIT_REALM},?\\s*%{ES_AUDIT_ROLES},?\\s*%{ES_AUDIT_ACTION},?\\s*%{ES_AUDIT_INDICES},?\\s*%{ES_AUDIT_URI},?\\s*%{ES_AUDIT_REQUEST},?\\s*%{ES_AUDIT_REQUEST_BODY},?" | ||
] | ||
} | ||
}, | ||
{ | ||
"split": { | ||
"field": "elasticsearch.audit.user.roles", | ||
"separator": ",", | ||
"ignore_missing": true | ||
} | ||
}, | ||
{ | ||
"split": { | ||
"field": "elasticsearch.audit.indices", | ||
"separator": ",", | ||
"ignore_missing": true | ||
} | ||
}, | ||
{ | ||
"script": { | ||
"lang": "painless", | ||
"source": "if (ctx.elasticsearch.audit.sub_action != null) { ctx.elasticsearch.audit.action += '[' + ctx.elasticsearch.audit.sub_action + ']' }" | ||
} | ||
}, | ||
{ | ||
"remove": { | ||
"field": "elasticsearch.audit.sub_action", | ||
"ignore_missing": true | ||
} | ||
} | ||
], | ||
"on_failure": [ | ||
{ | ||
"set": { | ||
"field": "error.message", | ||
"value": "{{ _ingest.on_failure_message }}" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.