-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[APM] Updates failed transaction correlations help #111222
Conversation
@@ -36,7 +36,7 @@ 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 `event.outcome` value is `failure`." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By default transactions with status code 5xx are marked as failed. So it might make sense to still mention this somehow (or maybe this belongs in the docs?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I've added that example to the docs in #111219
Pinging @elastic/apm-ui (Team:apm) |
@elasticmachine merge upstream |
💚 Build SucceededMetrics [docs]Async chunks
History
To update your PR or re-run it, just comment with: |
Co-authored-by: Lisa Cawley <[email protected]>
Co-authored-by: Lisa Cawley <[email protected]>
Summary
Relates to #108441
This PR updates the help for the failed transactions correlations, such that it mentions the event.outcome field rather than the status code. It also aims to clarify that we look at the set of successful transactions and compare it to the set of failed transactions.
Screenshot