You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/docs/product/dashboards/widget-library/index.mdx
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The widget library contains a collection of prebuilt widgets you can add to your
14
14
15
15
The library includes the following widgets:
16
16
17
-
-**Distribution Duration**: A multi-y axis chart visualizing the distribution of transaction duration across various percentiles (p50, p75, and p95)
17
+
-**Duration Distribution**: A multi-y axis chart visualizing the distribution of transaction duration across various percentiles (p50, p75, and p95)
18
18
-**High Throughput Transactions**: The top five transactions with the largest number of events
19
19
-**LCP by Country**: World map showing the p75 of page load times for each country
20
20
-**Miserable Users**: The total number of unique users who have experienced slow transactions (transaction duration greater than 1200ms)
@@ -29,23 +29,23 @@ You can change the title, queries, fields, visualization types, and sort order o
29
29
30
30
### Performance across release versions
31
31
32
-
To monitor how your app is performing on a certain release, you can modify the "Distribution Duration" widget by adding the release version to the search condition:
32
+
To monitor how your app is performing on a certain release, you can modify the "Duration Distribution" widget by adding the release version to the search condition:
To compare performance with another release version, you can add another query by clicking the "Add Query" button and querying for a different release version:
The "Distribution Duration" widget shows the spread of transaction duration times. This visualization can be modified to show if transaction durations are within certain target thresholds and present them as "satisfactory", "tolerable", or "frustrating" transactions. To create this type of visualization, change the "Visualization Display" to "Area Chart". Area charts stack results and are more appropriate for results that are cumulative:
48
+
The "Duration Distribution" widget shows the spread of transaction duration times. This visualization can be modified to show if transaction durations are within certain target thresholds and present them as "satisfactory", "tolerable", or "frustrating" transactions. To create this type of visualization, change the "Visualization Display" to "Area Chart". Area charts stack results and are more appropriate for results that are cumulative:
49
49
50
50
- Visualization Display: `Area Chart`
51
51
@@ -55,15 +55,15 @@ Set one of the y-axis values to `count()` and remove the other two axes:
55
55
56
56
To the first query, add the search condition for satisfactory transaction duration (this example uses 300ms as the satisfactory response threshold):
Add another query for the tolerable condition by clicking the "Add Query" button. In this example, we're using the [Apdex](/product/performance/metrics/#apdex) definition where tolerable response times are between the satisfactory threshold and four times the satisfactory threshold:
61
61
62
-
- Search condition 2: `!event.type:error (transaction.duration:<1200 AND transaction.duration:>=300)`
62
+
- Search condition 2: `event.type:transaction (transaction.duration:<1200 AND transaction.duration:>=300)`
63
63
64
64
Finally, add a third query for for the frustrating transaction duration:
0 commit comments