Hi,
In earlier version of kibana I used to decode and encode the post url from Kibana discover tab to change the timestamp to gte: "now-24h" lte: "now" in the url to fetch last 24 hours of data while auto generating the report using the watcher.
Script usded:
[Reflection.Assembly]::LoadWithPartialName("System.Web") | Out-Null
[System.Net.WebUtility]::UrlEncode("")
[System.web.HttpUtility]::UrlDecode("")
Now i am not able to decode the post url from latest version of kibana 7.13.4 after changing the time range as mentioned above. One difference noticed in latest version of URL is that it comes with kibana query language.
Please help me to resolve this issue.