Transaction Summary

Every transaction has a summary view that gives you a better understanding of its overall health. With this view, you'll find graphs, instances of these events, stats, facet maps, related errors, and more.

Example of Transaction Summary

A transaction represents a single instance of an activity you want to measure or track, like a page load, page navigation, or an asynchronous task. Having transaction information lets you monitor the overall performance of your application beyond when it crashes or generates an error. Without transactions, you can only know when things in your application have actually gone wrong, which is important, but not the whole picture.

Transactions on the Performance page are grouped by the transaction names, such as endpoint paths for backend request transactions (like /store/checkout/ or api/v2/users/<user_id>/) or URLs/routes for page load transactions (like https://docs.sentry.io/performance-monitoring/). When you click a transaction on the Performance page, it takes you to the Transaction Summary, where you can see a list of transaction events: that is, the individual instances of that specific transaction.

Learn about how to control the type and amount of transactions you send to Sentry, in Manage Your Transaction Quota. For a more in-depth explanation of what’s in a transaction as it relates to traces, check out our full tracing documentation.

While you can use the search field to narrow down your events, you can also filter by http, db, browser, and resource by toggling between operations in the "Filter" menu. This filtering is reflected in the rest of the page, which provides you with more targeted drill-downs.

  • Duration Breakdown: By graphing P50, P75, P95, P99, and P100 durations distinctly, you can utilize this display to see their transaction performance over time. Toggle the display of each segment by clicking on the legend (including Releases). Also, zoom in on specific slices to investigate spikes or possible performance regressions from a release.

  • Duration Percentiles: This graph shows the average transaction duration across distinct percentiles. For example, see how different the P50 and P99 response time durations are for a given transaction and understand the rate of increase between segments.

  • Duration Distribution: This graph shows the volume of transactions per median duration. This view helps you understand the spread of the transaction durations in order to determine the likelihood of different outcomes. For example, what transaction duration is the most likely for a user.

  • Trends: This graph uses a modified version of ASAP smoothing. The Trends graph shows the unsmoothed data of the Display data, along with a smoothed version of that data.

  • Web Vitals: This graph displays the P75 threshold of First Paint, First Contentful Paint, Largest Contentful Paint, and First Input Delay over time. This view helps you understand how the Web Vitals associated with the transaction are performing over time.

  • User Misery: This graph displays the User Misery score for the transaction. User Misery is a score that represents the number of unique users who have experienced load times four times the project's configured threshold.

On initial load, the table displays slow occurrences of the transaction along with the Event ID, User, Operations Breakdown, Total Transaction Duration, and Timestamp of the event. Click on the Event ID to open the event detail or the Trace ID to view the full trace. Other sets of transactions you can browse through are below.

  • Fastest Transactions
  • Slow Transactions (p95)
  • Outlier Transactions (p100)
  • Recent Transactions

The table also updates dynamically if you change any of the project, environment, or date range filters or when you drill in on a latency segment (applicable when viewing the Latency Histogram).

When viewing transactions, you may want to create more curated views. Click "Open in Discover" above the table to create a custom query to investigate further. For more details, see the full documentation for the Discover Query Builder.

The transaction summary includes a list of suspect spans that correspond to where most of the time in a transaction is spent. By default, we sort spans by the total self time. When you click the "Example Transaction" event, it takes you directly to the span in question.

The transaction summary includes a list of suspect tags that often correspond to slower transactions. By default, we sort tags by the total time lost. The list includes additional information:

  • Tag Key: The tag category (for example, device, geo)
  • Tag Value: The specific tag value (for example, Android, South America)
  • Avg (Tag) Duration: Provides the average duration for a transaction with this tag
  • Comparison to Avg: Indicates how much slower or faster this tag is than the average duration of this transaction
  • Total Time Lost: Calculates how much total time you've lost in the selected time range when comparing the average tag duration to the average transaction duration

To investigate why these tags are affecting performance, click on the tag value to filter the transaction summary further.

This table will show you all related issues. In other words, any errors that are associated with this transaction. Click "Open in Issues" to see the full list.

The sidebar contains helpful supplementary information about this transaction's User Misery, Apdex, Throughput, Latency, and more. You'll also find a Tag Summary (facet map) for a list of common tags related to this transaction.

Frontend transactions will have a "Web Vitals" tab. Clicking on the tab will take you to the distribution histogram of web vitals for that transaction. To drill further into your application's web vitals, you can also go to the Web Vitals page.

Example of Web Vitals

The Web Vitals histogram displays data distribution, and it can help you identify and diagnose frontend performance problems by revealing anomalies.

By default, outliers will be excluded from the histograms to provide a more informative view of these vitals. Outliers are determined using the upper outer fence as the upper bound, and any data points above the upper bound are deemed an outlier.

The vertical marker for each Web Vital is the 75th percentile of the observed data points. In other words, 25% of the recorded values exceed that amount.

If you notice a region of interest on any of the histograms, click and drag over the area to zoom in for a more detailed view. You may also want to see more information related to the transactions in the histograms. Click "Open in Discover" beneath the Web Vital of choice to build a custom query for further investigation. For more details, see the full documentation for the Discover Query Builder.

If you wish to see all of the data available, open the dropdown and click "View All". You will likely see extreme outliers when you click "View All". You can click and drag over an area to zoom in for a more detailed view.

The Tags tab displays a list of suspect tag keys that often correspond to slower transactions. Toggle through them to have the corresponding tag values reflected in the heat map. Similar to a histogram, events are distributed by duration. Click on any purple box to view a list of events or continue to filter down the events by adding values to the filter in the table below the heat map. Use the "X-Axis" dropdown to aggregate the events by transaction duration or by Largest Contentful Paint (LCP).

Example of Tags Tab

The table in All Events tab offers a full list of transactions broken down similar to the abbreviated table in the overview. Filters are carried across from other views. You can also narrow the events down by percentile.

The "Spans" tab displays a list of suspect spans that correspond to where most of the time in a transaction is being spent, and it can help you find spans where performance problems lie.

Choose from one of several metrics to sort spans and identify different types of problems. Filter spans to only see the span operation type you're interested in.

Clicking on a span will take you to its summary page which will give you more details about this specific span group. On the page, you can see the performance of the span over time and see a list of transaction events that contain the span.

If you're in the Early Adopter program, you can also see the distribution of the span self time using the (added) "Display" dropdown. This histogram can help you identify systemic performance issues across the entire dataset by showing how self time for every span instance is distributed.

You can also select a subset of the dataset by zooming into the distribution histogram. The stats and transaction events table will reflect that change and will only include spans with self time that are within the bounds of your subset. This allows you to focus on the best or worse performing spans so you can troubleshoot performance issues more easily.

Suspect spans are determined using a span's self time rather than its duration. To calculate a span's self time, take the interval of the span and subtract the intervals of any child spans. The duration of the remaining interval is the span's self time.

In the example below, the self time of each span is highlighted by the darker areas. For example, the http.server has a self time of 10ms + 15ms = 25ms.

Span Self Time

  • Total Self Time: The sum of the self time for a span. This metric is useful to identify the span where the majority of the time is being spent.
  • Average Count: The average number of times a span appears in a transaction. This metric is useful to identify redundant work being done within a transaction. It is often indicative of an n + 1 problem.
  • Total Count: The total number of times a span appears across all transactions. This metric is useful to identify spans that appear most frequently.
  • p50 Self Time: The 50th percentile of the self time for a span. This metric is useful to identify spans that take a long time individually.
  • p75 Self Time: The 75th percentile of the self time for a span. This metric is useful to identify spans that take a long time individually.
  • p95 Self Time: The 95th percentile of the self time for a span. This metric is useful to identify spans that take a long time individually.
  • p99 Self Time: The 99th percentile of the self time for a span. This metric is useful to identify spans that take a long time individually.

Spans with the same operation and description are grouped together into a single span group. Some processing is done to group similar spans together. If you find that the span grouping is not ideal, you can change this by making sure the spans you want grouped together have the same operation and description.

The Replays tab displays a list of replays where the transaction you’re viewing had occurred. Go directly to Replay Details for any replay and see how a slow transaction impacted the user experience. Note: you must have Session Replay enabled to see this tab.

If you find an important transaction you want to return to, click "Star for Team" in the upper right corner to mark it as a key transaction for any of your teams. This will be saved so you can view this from your Performance Homepage. The transactions you star will be shared with members of the same team and each team can have up to 100 starred transactions.

To create a metric alert rule for this transaction, click Create Alert at the top of the page.

Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").