Reputation: 175
We have a REST API implemented as a Cloud Service, that sends telemetry to Application Insights. And we use commands like
The sections of the command preceded by GRP_ and FLD_ are parameters. This makes looking at the breakdown of requests in Application Insights difficult since those requests show up individually.
I’ve implemented an ITelemetryInitializer that “normalizes” the Context.Operation.Name (and the Request URL) in our requests. But I see that those request are showing up bucketed as “Other Values”.
Is there any way to reset the "bucketing" of the top-level list, or do I need to get a new AppInsights instance?
Upvotes: 1
Views: 472
Reputation: 1900
Standard dimentions like request name should be reset after a week. So if you stopped collecting parameters in the names it should clear up after a week. Current limit is 1000.
Upvotes: 1