Skip to content

Commit

Permalink
fix(DT): Changed exception references to errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhetoric101 committed Sep 8, 2021
1 parent bdf855c commit d371f8b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ Here are some additional distributed tracing UI details, rules, and limits:
id="error-tips"
title="How to understand span errors"
>
Span-level errors show you where errors originated in a process, how they bubbled up, and where they were handled. Every span that ends with an exception is shown with an error in the UI and contributes to the total error count for that trace.
Span-level errors show you where errors originated in a process, how they bubbled up, and where they were handled. Every span that ends with an error is shown with an error in the UI and contributes to the total error count for that trace.

Here are some general tips about understanding span errors:

Expand Down Expand Up @@ -453,11 +453,11 @@ Here are some additional distributed tracing UI details, rules, and limits:
<tbody>
<tr>
<td>
Spans ending in exceptions
Spans ending in errors
</td>

<td>
An exception that leaves the boundary of a span results in an error on that span and on any ancestor spans that also exit with an error, until the exception is caught or exits the transaction. You can see if an exception is caught in an ancestor span.
An error that leaves the boundary of a span results in an error on that span and on any ancestor spans that also exit with an error, until the error is caught or exits the transaction. You can see if an error is caught in an ancestor span.
</td>
</tr>

Expand Down

0 comments on commit d371f8b

Please sign in to comment.