mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[APM] Fix incorrect table column header (95th instead of avg) (#88188)
This commit is contained in:
parent
5181d49c05
commit
d1b348e621
1 changed files with 6 additions and 7 deletions
|
@ -55,30 +55,29 @@ const DEFAULT_SORT = {
|
|||
|
||||
function getLatencyAggregationTypeLabel(latencyAggregationType?: string) {
|
||||
switch (latencyAggregationType) {
|
||||
case 'avg': {
|
||||
i18n.translate(
|
||||
case 'avg':
|
||||
return i18n.translate(
|
||||
'xpack.apm.serviceOverview.transactionsTableColumnLatency.avg',
|
||||
{
|
||||
defaultMessage: 'Latency (avg.)',
|
||||
}
|
||||
);
|
||||
}
|
||||
case 'p95': {
|
||||
|
||||
case 'p95':
|
||||
return i18n.translate(
|
||||
'xpack.apm.serviceOverview.transactionsTableColumnLatency.p95',
|
||||
{
|
||||
defaultMessage: 'Latency (95th)',
|
||||
}
|
||||
);
|
||||
}
|
||||
case 'p99': {
|
||||
|
||||
case 'p99':
|
||||
return i18n.translate(
|
||||
'xpack.apm.serviceOverview.transactionsTableColumnLatency.p99',
|
||||
{
|
||||
defaultMessage: 'Latency (99th)',
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue