Reputation: 18838
I have run a query on https://analytics.applicationinsights.io like the following:
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 10000 of 400000 existed records were reflected (see in the following).
The question is "How to increase this limit?".
Upvotes: 4
Views: 3535
Reputation: 895
I don't think it is possible using the portal experience, but I have done it in the past using the preview APIs as they support $skip and $top.
You can read about the API here: https://dev.applicationinsights.io/reference/get-events
What I did was to iterate over all requests in a Power BI report and then do my data visualization in Power BI.
Upvotes: 5