Skip to content

Instantly share code, notes, and snippets.

@tedder
Created February 13, 2015 18:45
Show Gist options
  • Save tedder/1862b045f53340ceb701 to your computer and use it in GitHub Desktop.
Save tedder/1862b045f53340ceb701 to your computer and use it in GitHub Desktop.
{
"size": 50,
"sort": [ { "@timestamp": { "order": "desc" } } ],
"query": {
"bool": {
"must": [
{
"range": {
"@timestamp": {
"from": "now-5m",
"to": "now"
}
}
},
{
"term": { "type": "cloudtrail" }
}
],
"must_not": [
{ "query_string": { "query": 'eventName:Describe* Get* List* UpdateStack CreateStack DownloadDBLogFilePortion RegisterInstancesWithLoadBalancer DeregisterInstancesFromLoadBalancer' } },
{ "query_string": { "query": 'userAgent:cloudformation.amazonaws.com' } },
{ "query_string": { "query": 'eventName:XXX*' } },
],
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment