Skip to content

Commit

Permalink
[APM] Change "Error rate" to "Trans. error rate" on service map popov…
Browse files Browse the repository at this point in the history
…er (elastic#72073)

Fixes elastic#72067.
# Conflicts:
#	x-pack/plugins/apm/public/components/app/ServiceMap/Popover/ServiceMetricList.tsx
  • Loading branch information
smith committed Jul 16, 2020
1 parent 47c2b2b commit 9e37c98
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,10 @@ export function ServiceMetricList({
: null,
},
{
title: i18n.translate(
'xpack.apm.serviceMap.avgErrorsPerMinutePopoverMetric',
{
defaultMessage: 'Errors per minute (avg.)',
}
),
description: avgErrorsPerMinute?.toFixed(2),
title: i18n.translate('xpack.apm.serviceMap.errorRatePopoverStat', {
defaultMessage: 'Trans. error rate (avg.)',
}),
description: isNumber(avgErrorRate) ? asPercent(avgErrorRate, 1) : null,
},
{
title: i18n.translate('xpack.apm.serviceMap.avgCpuUsagePopoverMetric', {
Expand Down

0 comments on commit 9e37c98

Please sign in to comment.