ApplicationInsights-dotnet
ApplicationInsights-dotnet copied to clipboard
What's the max allowed value of seriesCountLimit and valuesPerDimensionLimit?
I'm using MetricConfiguration to get metrics and track values. But it has two limits, seriesCountLimit and valuesPerDimensionLimit. We do have a vast number of dimensions and distinct values for every dimension. I want to know the upper limit of the two properties.
MetricConfiguration MetricConfig = new(seriesCountLimit: 100000, valuesPerDimensionLimit: 500, new MetricSeriesConfigurationForMeasurement(restrictToUInt32Values: false));
@zhangyazhong, did you ever find the answer to this?