mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[APM] Bugfix: Increase table columns for latency and throughput (#110187)
This commit is contained in:
parent
0069faf8dd
commit
dc0c322847
4 changed files with 7 additions and 7 deletions
|
@ -101,7 +101,7 @@ export function getColumns({
|
|||
{
|
||||
field: 'latency',
|
||||
name: getLatencyColumnLabel(latencyAggregationType),
|
||||
width: `${unit * 10}px`,
|
||||
width: `${unit * 11}px`,
|
||||
render: (_, { serviceNodeName, latency }) => {
|
||||
const currentPeriodTimestamp =
|
||||
detailedStatsData?.currentPeriod?.[serviceNodeName]?.latency;
|
||||
|
@ -126,7 +126,7 @@ export function getColumns({
|
|||
'xpack.apm.serviceOverview.instancesTableColumnThroughput',
|
||||
{ defaultMessage: 'Throughput' }
|
||||
),
|
||||
width: `${unit * 10}px`,
|
||||
width: `${unit * 11}px`,
|
||||
render: (_, { serviceNodeName, throughput }) => {
|
||||
const currentPeriodTimestamp =
|
||||
detailedStatsData?.currentPeriod?.[serviceNodeName]?.throughput;
|
||||
|
|
|
@ -81,7 +81,7 @@ export function SparkPlot({
|
|||
return (
|
||||
<EuiFlexGroup
|
||||
justifyContent="spaceBetween"
|
||||
gutterSize="m"
|
||||
gutterSize="xs"
|
||||
responsive={false}
|
||||
alignItems="flexEnd"
|
||||
>
|
||||
|
|
|
@ -80,7 +80,7 @@ export function DependenciesTable(props: Props) {
|
|||
name: i18n.translate('xpack.apm.dependenciesTable.columnLatency', {
|
||||
defaultMessage: 'Latency (avg.)',
|
||||
}),
|
||||
width: `${unit * 10}px`,
|
||||
width: `${unit * 11}px`,
|
||||
render: (_, { currentStats, previousStats }) => {
|
||||
return (
|
||||
<SparkPlot
|
||||
|
@ -99,7 +99,7 @@ export function DependenciesTable(props: Props) {
|
|||
name: i18n.translate('xpack.apm.dependenciesTable.columnThroughput', {
|
||||
defaultMessage: 'Throughput',
|
||||
}),
|
||||
width: `${unit * 10}px`,
|
||||
width: `${unit * 11}px`,
|
||||
render: (_, { currentStats, previousStats }) => {
|
||||
return (
|
||||
<SparkPlot
|
||||
|
|
|
@ -71,7 +71,7 @@ export function getColumns({
|
|||
field: 'latency',
|
||||
sortable: true,
|
||||
name: getLatencyColumnLabel(latencyAggregationType),
|
||||
width: `${unit * 10}px`,
|
||||
width: `${unit * 11}px`,
|
||||
render: (_, { latency, name }) => {
|
||||
const currentTimeseries =
|
||||
transactionGroupDetailedStatistics?.currentPeriod?.[name]?.latency;
|
||||
|
@ -97,7 +97,7 @@ export function getColumns({
|
|||
'xpack.apm.serviceOverview.transactionsTableColumnThroughput',
|
||||
{ defaultMessage: 'Throughput' }
|
||||
),
|
||||
width: `${unit * 10}px`,
|
||||
width: `${unit * 11}px`,
|
||||
render: (_, { throughput, name }) => {
|
||||
const currentTimeseries =
|
||||
transactionGroupDetailedStatistics?.currentPeriod?.[name]?.throughput;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue