You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 2, 2022. It is now read-only.
Describe the bug
I have configured a rollup job with a timestamp interval by day and it running without any problem, but i have tried to compare results between normal index and index generated by rollup and i can see this results are different:
Query performed in original index
GET /security-auditlog-2021.07.27/_search
{
"size": 0,
"query": {
"match_all": {}
},
"aggs": {
"date": {
"date_histogram": {
"field": "@timestamp",
"calendar_interval": "day",
"time_zone": "UTC"
}
}
}
}