Skip to content

Commit

Permalink
Update SM&GM for INFRA-AZUREAPIMANAGEMENTSERVICE (#91)
Browse files Browse the repository at this point in the history
* Update SM&GM for INFRA-AZUREAPIMANAGEMENTSERVICE

- Fix the title of a metric which value is in milliseconds.
- Remove unit information for one of the summary metrics.
- Update SM to return the value in seconds.
  • Loading branch information
Toni Reina committed Feb 26, 2021
1 parent 719362c commit 61b5651
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ requests:
from: AzureApiManagementServiceSample
facet: entityName
eventId: entityGuid
averageResponseTimeS:
title: Average response time (s)
averageResponseTime:
title: Average response time (ms)
query:
select: average(durationMilliseconds.Average)
from: AzureApiManagementServiceSample
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ requests:
eventId: entityGuid
select: sum(totalRequests.Total)
from: AzureApiManagementServiceSample
averageResponseTimeS:
title: Average response time (s)
averageResponseTime:
title: Average response time
unit: SECONDS
query:
select: average(durationMilliseconds.Average)
select: average(durationMilliseconds.Average) / 1000
from: AzureApiManagementServiceSample
eventId: entityGuid
capacityPercent:
Expand Down

0 comments on commit 61b5651

Please sign in to comment.