mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[6.4] [APM] Fix column widths in EUI tables (#21490) | [APM] Document APM config settings (#21492) (#21535)
* [APM] Fix column widths in EUI tables (#21490) * [APM] Document APM config settings (#21492) * [APM] Document APM config settings * Don’t discern between OSS and xpack config options * Change to apm_oss * Reword docs
This commit is contained in:
parent
a344d343b7
commit
3ed0076f00
6 changed files with 21 additions and 2 deletions
|
@ -13,3 +13,16 @@ You do not need to configure any settings to use APM. It is enabled by default.
|
|||
|
||||
xpack.apm.enabled:: Set to `false` to disabled the APM plugin {kib}. Defaults to
|
||||
`true`.
|
||||
|
||||
xpack.apm.ui.enabled:: Set to `false` to hide the APM plugin {kib} from the menu. Defaults to
|
||||
`true`.
|
||||
|
||||
apm_oss.indexPattern:: Index pattern is used for integrations with Machine Learning and Kuery Bar. It must match all apm indices. Defaults to `apm-*`.
|
||||
|
||||
apm_oss.errorIndices:: Matcher for indices containing error documents. Defaults to `apm-*-error-*`.
|
||||
|
||||
apm_oss.onboardingIndices:: Matcher for indices containing onboarding documents. Defaults to `apm-*-onboarding-*`.
|
||||
|
||||
apm_oss.spanIndices:: Matcher for indices containing span documents. Defaults to `apm-*-span-*`.
|
||||
|
||||
apm_oss.transactionIndices:: Matcher for indices containing transaction documents. Defaults to `apm-*-transaction-*`.
|
||||
|
|
|
@ -279,7 +279,7 @@ exports[`ErrorGroupOverview -> List should render with data 1`] = `
|
|||
}
|
||||
|
||||
.c1 {
|
||||
max-width: 512px;
|
||||
max-width: 100%;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
|
|
@ -34,7 +34,7 @@ const GroupIdLink = styled(RelativeLink)`
|
|||
`;
|
||||
|
||||
const MessageAndCulpritCell = styled.div`
|
||||
${truncate(px(unit * 32))};
|
||||
${truncate('100%')};
|
||||
`;
|
||||
|
||||
const MessageLink = styled(RelativeLink)`
|
||||
|
|
|
@ -71,6 +71,7 @@ exports[`ErrorGroupOverview -> List should render empty state 1`] = `
|
|||
<th
|
||||
className="euiTableHeaderCell"
|
||||
scope="col"
|
||||
width="50%"
|
||||
>
|
||||
<button
|
||||
aria-label="Sort Name descending"
|
||||
|
@ -372,6 +373,7 @@ exports[`ErrorGroupOverview -> List should render with data 1`] = `
|
|||
<th
|
||||
className="euiTableHeaderCell"
|
||||
scope="col"
|
||||
width="50%"
|
||||
>
|
||||
<button
|
||||
aria-label="Sort Name descending"
|
||||
|
@ -508,6 +510,7 @@ exports[`ErrorGroupOverview -> List should render with data 1`] = `
|
|||
<td
|
||||
className="euiTableRowCell"
|
||||
data-header="Name"
|
||||
width="50%"
|
||||
>
|
||||
<div
|
||||
className="euiTableCellContent euiTableCellContent--overflowingContent"
|
||||
|
@ -571,6 +574,7 @@ exports[`ErrorGroupOverview -> List should render with data 1`] = `
|
|||
<td
|
||||
className="euiTableRowCell"
|
||||
data-header="Name"
|
||||
width="50%"
|
||||
>
|
||||
<div
|
||||
className="euiTableCellContent euiTableCellContent--overflowingContent"
|
||||
|
|
|
@ -58,6 +58,7 @@ class List extends Component {
|
|||
{
|
||||
field: 'serviceName',
|
||||
name: 'Name',
|
||||
width: '50%',
|
||||
sortable: true,
|
||||
render: serviceName => (
|
||||
<TooltipOverlay content={formatString(serviceName)}>
|
||||
|
|
|
@ -60,6 +60,7 @@ class List extends Component {
|
|||
{
|
||||
field: 'name',
|
||||
name: 'Name',
|
||||
width: '50%',
|
||||
sortable: true,
|
||||
render: transactionName => {
|
||||
const transactionUrl = `${serviceName}/transactions/${legacyEncodeURIComponent(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue