Skip to content

Instantly share code, notes, and snippets.

@dadoonet
Created July 8, 2014 15:15
Show Gist options
  • Save dadoonet/c006b8de3ee64370b1dc to your computer and use it in GitHub Desktop.
Save dadoonet/c006b8de3ee64370b1dc to your computer and use it in GitHub Desktop.
Test date in milliseconds since epoch
DELETE test
PUT test
{
"settings": {
"number_of_shards": 1
},
"mappings": {
"doc": {
"properties": {
"mydate": {
"type": "date"
}
}
}
}
}
PUT test/doc/1
{
"mydate": 1404831198707
}
GET test/_search
{
"aggs": {
"by_year": {
"date_histogram": {
"field": "mydate",
"interval": "month"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment