Skip to content

Instantly share code, notes, and snippets.

@chucklarge
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save chucklarge/f54a351bddae83fdc32e to your computer and use it in GitHub Desktop.

Select an option

Save chucklarge/f54a351bddae83fdc32e to your computer and use it in GitHub Desktop.
GET logstash-2014.06.04/_search
{
"query": {
"query_string": {
"query": "type:web_access_log AND response:[400 TO 499]"
}
}
}
data like
"hits": [
{
"a": 2,
"blah": {
"b": 3,
"c": 7
}
}
]
want data like
"hits": [
{
"a": 2,
"blah.b": 3,
"blah.c": 7
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment