Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ import {
EuiFlexGroup,
EuiFlexItem,
EuiHorizontalRule,
EuiCallOut,
EuiLink,
EuiCode,
} from '@elastic/eui';
import { Location } from 'history';
import { first } from 'lodash';
Expand Down Expand Up @@ -154,6 +157,20 @@ export function TransactionOverview() {
<h3>Transactions</h3>
</EuiTitle>
<EuiSpacer size="s" />
<EuiCallOut
title="This view shows a subset of reported transactions."
color="danger"
iconType="alert"
>
<p>
The number of unique transaction names exceeds the configured
value of 200. Try reconfiguring your agents to group similar
transactions or increase the value of
<EuiCode>xpack.apm.ui.transactionGroupBucketSize</EuiCode>.{' '}
<EuiLink href="#">Learn more in the docs.</EuiLink>.
</p>
</EuiCallOut>
<EuiSpacer size="s" />
<TransactionList
isLoading={transactionListStatus === 'loading'}
items={transactionListData}
Expand Down