I have imported data with daytime in GMT time zone.
I need count events group by on variable interval (day,week or month) . I use a search query like this:
<mysearch>|
bucket _time span=1d | stats count as newUsersForPerido by _time
And this return counts over every day on GMT timezone.
Now I need to use this query in different time zones for example UTC+03:00 and UTC-04:00 how I can modify my search string?
... View more