I have to get most number of cities browsing my application. I am getting that data using App insights. However I want to store that data into an array and pass it to a test function using SELENIUM c#.I am using below query in analytics. I installed app insights nuget package and connected to it.
customevents
| where timestamp >= ago(24h)
| summarize count() by client_City
| order by count_ desc
C# code:
TelemetryClient telemetry = new TelemetryClient();
telemetry.InstrumentationKey = "xxxx";
telemetry.TrackEvent("eventname");
I want to store the data that is coming from analytics query to an array in c#. Is there a way we can do it.
With the
TelemetryClient
you can only write data, not query data.You have these options:
I think option 3 is best fit for you.