Skip to content

Commit

Permalink
try ignore case for dimension
Browse files Browse the repository at this point in the history
  • Loading branch information
hkfgo committed May 4, 2024
1 parent 8d48752 commit 83c4d2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public async Task<List<MeasuredMetric>> QueryMetricAsync(string metricName, List

// Get the metric value according to the requested aggregation type
var requestedMetricAggregate = InterpretMetricValue(MetricAggregationTypeConverter.AsMetricAggregationType(aggregationType), mostRecentMetricValue);
_logger.LogWarning("{labels} labels found with value {value}", labels, mostRecentMetricValue);
_logger.LogWarning("{labels} labels found with value {value}", labels, requestedMetricAggregate);
try
{
var measuredMetric = metricDimensions.Any()
Expand Down

0 comments on commit 83c4d2d

Please sign in to comment.