How to increase your Google Analytics query results limit in Azure Analytics Applicationinsights

I have completed the request https://analytics.applicationinsights.io like this:

traces
| where timestamp >= datetime(2017-03-17T13:12:59.999Z) and timestamp < 
  datetime(2017-03-21T12:13:12.001Z)
| where (itemType == 'trace' and (timestamp >= datetime(2017-03-
  17T13:13:00.000Z) and timestamp <= datetime(2017-04-23T12:13:12.000Z)))

      

But 10,000 of the 400,000 entries were reflected (see below).

enter image description here

The question is: "How to increase this limit?"

+3


source to share


1 answer


I don't think this is possible using portal experience, but I've done it in the past using the preview API as they support $ skip and $ top.

You can read about the API here: https://dev.applicationinsights.io/reference/get-events



What I did was iterate over all the queries in the Power BI report and then render the data in Power BI.

+4


source







All Articles