Skip to content

Instantly share code, notes, and snippets.

View mhzawadi's full-sized avatar
🏝️
windmilling about

Matthew Horwood mhzawadi

🏝️
windmilling about
View GitHub Profile
@mhzawadi
mhzawadi / openVPN Logins-1441974937167
Last active September 15, 2015 14:42
Kibana - openVPN login locations
{
"title": "openVPN Logins",
"services": {
"query": {
"list": {
"0": {
"query": "authentication succeeded",
"alias": "",
"color": "#7EB26D",
"id": 0,
@mhzawadi
mhzawadi / logstash.conf
Last active June 12, 2020 19:17
Logstash Grok filters
filter {
if [type] == "apache_access" {
grok {
match => { "message" => "%{COMMONAPACHELOG}" }
}
date {
match => [ "timestamp" , "dd/MMM/yyyy:HH:mm:ss Z" ]
}
}