Skip to content

Commit

Permalink
[APM] Updates failed transaction correlations help (#111222)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl authored Sep 8, 2021
1 parent e167364 commit dc2180a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* 2.0.
*/

import { EuiCode } from '@elastic/eui';
import React, { useState } from 'react';
import { i18n } from '@kbn/i18n';
import { FormattedMessage } from '@kbn/i18n/react';
Expand Down Expand Up @@ -36,7 +37,11 @@ export function FailedTransactionsCorrelationsHelpPopover() {
<p>
<FormattedMessage
id="xpack.apm.correlations.failedTransactions.helpPopover.basicExplanation"
defaultMessage="Correlations help you discover which attributes are contributing to failed transactions. Transactions are considered a failure when it returns a status code >= 5xx."
defaultMessage="Correlations help you discover which attributes are most influential in distinguishing between transaction failures and successes. Transactions are considered a failure when their {field} value is {value}."
values={{
field: <EuiCode>event.outcome</EuiCode>,
value: <EuiCode>failure</EuiCode>,
}}
/>
</p>
<p>
Expand Down

0 comments on commit dc2180a

Please sign in to comment.