hi
my problem :
I have a field of type array of date :
"creneau": ["2015-09-08T09:00:00", "2015-09-08T09:15:00", "2015-09-08T10:30:00", "2015-09-08T10:45:00"]
"creneau": { "format": "strict_date_optional_time||epoch_millis", "type": "date" }
I make an aggrégation with an interval of 15 minutes:
"date_histogram" : {
"field" : "creneau",
"interval" : "15m",
In this example, the field " creneau " match only once and not 4 times.
I make an error?
do you have a solution?
cdt
patrick