Created
June 23, 2015 00:43
-
-
Save devster31/bddd6701f0838f217809 to your computer and use it in GitHub Desktop.
elasticsearch apache_access template
This file contains hidden or 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
{ | |
"order": 0, | |
"template": "*_apache_access", | |
"settings": {}, | |
"mappings": { | |
"apache_logs": { | |
"properties": { | |
"country": { | |
"type": "string" | |
}, | |
"referer": { | |
"type": "string" | |
}, | |
"agent": { | |
"type": "string" | |
}, | |
"code": { | |
"type": "long" | |
}, | |
"method": { | |
"type": "string" | |
}, | |
"city": { | |
"type": "string" | |
}, | |
"coordinates": { | |
"type": "geo_point" | |
}, | |
"path": { | |
"type": "string" | |
}, | |
"@timestamp": { | |
"format": "dateOptionalTime", | |
"type": "date" | |
}, | |
"size": { | |
"type": "long" | |
}, | |
"host": { | |
"type": "ip" | |
}, | |
"tag": { | |
"type": "string" | |
}, | |
"user": { | |
"type": "string" | |
} | |
} | |
} | |
}, | |
"aliases": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment