Skip to content

Commit

Permalink
EventCounterCollector removes AggregationInterval as a dimension to t…
Browse files Browse the repository at this point in the history
…he metric. (#2050)
  • Loading branch information
cijothomas authored and rajkumar-rangaraj committed Sep 15, 2020
1 parent a12f095 commit 4349411
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


## Version 2.15.0
- no changes since beta.
- EventCounterCollector module does not add AggregationInterval as a dimension to the metric.

## Version 2.15.0-beta3
- [Support Request.PathBase for AspNetCore telemetry](https://github.com/microsoft/ApplicationInsights-dotnet/pull/1983)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ private void ExtractAndPostMetric(string eventSourceName, IDictionary<string, ob
metricTelemetry.Name = eventSourceName + "|" + name;
}

metricTelemetry.Properties.Add("AggregationInterval", actualInterval.ToString(CultureInfo.InvariantCulture));
if (!string.IsNullOrEmpty(counterDisplayUnit))
{
metricTelemetry.Properties.Add("DisplayUnits", counterDisplayUnit);
Expand Down

0 comments on commit 4349411

Please sign in to comment.