Skip to content

Commit

Permalink
[APM] Updates failed transaction correlations help (#111222) (#111574)
Browse files Browse the repository at this point in the history
Co-authored-by: Lisa Cawley <[email protected]>
  • Loading branch information
kibanamachine and lcawl authored Sep 8, 2021
1 parent 705d2b0 commit aab5338
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 aab5338

Please sign in to comment.