I have data in azure Insights saved in custom events formats. Now I need to create a dashboard page in my website that will pull data from insights and will show graphs on that data. Questions is that how I can filter data from the customEvents based on data saved there. like based on custom events or custom data.
Provide me any resource from where I can see that how $filer, $search,$query works? I am here https://dev.applicationinsights.io/quickstart but not looks like enough.
I tried to add filter like startswith(customEvent/name, 'BotMessageReceived') in https://dev.applicationinsights.io/apiexplorer/events but it not working. is says "Something went wrong while running the query", I have customEvents which name start with BotMessageReceived
Thanks Dalvir
https://api.applicationinsights.io/v1/apps/Your_application_id/query?query=events | where timestamp >ago(5h)
– Ivan Yang