Skip to content

Commit

Permalink
addressing PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes committed Apr 15, 2021
1 parent b0ccc4f commit f692b88
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export function getColumns({
sortable: true,
},
{
field: 'latencyValue',
field: 'latency',
name: getLatencyColumnLabel(latencyAggregationType),
width: px(unit * 10),
render: (_, { serviceNodeName, latency }) => {
Expand All @@ -120,7 +120,7 @@ export function getColumns({
sortable: true,
},
{
field: 'throughputValue',
field: 'throughput',
name: i18n.translate(
'xpack.apm.serviceOverview.instancesTableColumnThroughput',
{ defaultMessage: 'Throughput' }
Expand All @@ -146,7 +146,7 @@ export function getColumns({
sortable: true,
},
{
field: 'errorRateValue',
field: 'errorRate',
name: i18n.translate(
'xpack.apm.serviceOverview.instancesTableColumnErrorRate',
{ defaultMessage: 'Error rate' }
Expand All @@ -172,7 +172,7 @@ export function getColumns({
sortable: true,
},
{
field: 'cpuUsageValue',
field: 'cpuUsage',
name: i18n.translate(
'xpack.apm.serviceOverview.instancesTableColumnCpuUsage',
{ defaultMessage: 'CPU usage (avg.)' }
Expand All @@ -198,7 +198,7 @@ export function getColumns({
sortable: true,
},
{
field: 'memoryUsageValue',
field: 'memoryUsage',
name: i18n.translate(
'xpack.apm.serviceOverview.instancesTableColumnMemoryUsage',
{ defaultMessage: 'Memory usage (avg.)' }
Expand Down

0 comments on commit f692b88

Please sign in to comment.