Last active
May 30, 2018 23:03
-
-
Save flickerfly/11b6abd00d39a61dd1cb129fd8bc9deb to your computer and use it in GitHub Desktop.
ElasticSearch ingest pipeline for mysql audit
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
{ | |
"mysqlaudit_log": { | |
"description": "Ingest pipeline for MySQL Audit Log Format", | |
"processors": [ | |
{ | |
"grok": { | |
"field": "message", | |
"patterns": [ | |
"^%{YEAR:year}%{MONTHNUM:month}%{MONTHDAY:day}%{SPACE}%{TIME:time},%{GREEDYDATA:host},%{WORD:username},%{GREEDYDATA:client_hostname},%{INT:connection_id},%{INT:query_id},%{MYSQLAUDIT_EVENT_TYPE_RW:event_type},%{WORD:database_name},%{WORD:table}", | |
"^%{YEAR:year}%{MONTHNUM:month}%{MONTHDAY:day}%{SPACE}%{TIME:time},%{GREEDYDATA:host},%{WORD:username},%{GREEDYDATA:client_hostname},%{INT:connection_id},%{INT:query_id},%{MYSQLAUDIT_EVENT_TYPE_QUERY:event_type},%{GREEDYDATA:database_name},'%{GREEDYDATA:query}',%{INT:return_code}", | |
"^%{YEAR:year}%{MONTHNUM:month}%{MONTHDAY:day}%{SPACE}%{TIME:time},%{GREEDYDATA:host},%{WORD:username},%{GREEDYDATA:client_hostname},%{INT:connection_id},%{INT:query_id},%{MYSQLAUDIT_EVENT_TYPE_CONNECT:event_type},%{WORD:database_name},%{WORD:table}" | |
], | |
"pattern_definitions": { | |
"MYSQLAUDIT_EVENT_TYPE_QUERY": "QUERY", | |
"MYSQLAUDIT_EVENT_TYPE_RW": "(READ|WRITE)", | |
"MYSQLAUDIT_EVENT_TYPE_CONNECT": "(CONNECT|DISCONNECT|FAILED_CONNECT)" | |
} | |
} | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment