Hello -
I have an epoch date (in ms) and I'm trying to create a JSON query that gives me all records between 1 hour before and 1 hour after my epoch date.
Below is my query which is not working. Is there a "right" way to do this?
Thanks,
Butch
{
"range": {
"@timestamp": {
"gt": "1526002896000||-3600000",
"lt": "1526002896000||+3600000"
}
}