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
In preparation for the dataset split in discover and dashboards, we need
to update the docs to reflect this new change.
The changes typically involve removing `event.type:error` or
`event.type:transaction` from being mentioned in search fields because
after the dataset is selected, these are redundant. It also updates
screenshots and calls out the dataset selector more explicitly.
Co-authored-by: Liza Mock <[email protected]>
Copy file name to clipboardExpand all lines: docs/product/dashboards/widget-builder/index.mdx
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,15 +48,19 @@ A big number visualization displays the current value of a single function. This
48
48
49
49
## Choose Your Dataset
50
50
51
-
In the dataset selection step, choose which type of data you would like to use in your widget. This data is classified into two different datasets: [errors and transactions](#errors--transactions) and [issues](#issues).
51
+
In the dataset selection step, choose which type of data you would like to use in your widget. This data is classified into four different datasets: [errors](#error), [transactions](#transactions), [issues](#issues), and [releases](#releases).
52
52
53
-
### Errors & Transactions
53
+
### Errors
54
+
Choosing "Errors" allows you to query and aggregate error events in the same way you would for a [Discover Query](/product/explore/discover-queries/). This data is comprised of errors that occur in your application, which Sentry will use to group into issues, for example:
54
55
55
-
Choosing "Errors and Transactions" allows you to query and aggregate error and transaction events in the same way you would for a [Discover Query](/product/explore/discover-queries/). Some widget examples include:
56
+
- Users most affected by errors
57
+
58
+
### Transactions
59
+
60
+
Choosing "Transactions" allows you to query and aggregate transaction events in the same way you would for a [Discover Query](/product/explore/discover-queries/). This data is comprised of events that track the performance of operations in your application. Some widget examples include:
Copy file name to clipboardExpand all lines: docs/product/dashboards/widget-library/index.mdx
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,16 +29,16 @@ You can change the title, queries, fields, visualization types, sort order, and
29
29
30
30
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:
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:
58
58
59
-
- Search condition 2: `event.type:transaction (transaction.duration:<1200 AND transaction.duration:>=300)`
59
+
- Search condition 2: `transaction.duration:<1200 AND transaction.duration:>=300`
60
60
61
61
Finally, add a third query for for the frustrating transaction duration:
Copy file name to clipboardExpand all lines: docs/product/explore/discover-queries/query-builder.mdx
+19-6Lines changed: 19 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,12 +15,17 @@ From the **Discover** page, you can build a query in three ways.
15
15
2. Enter a new display name
16
16
3. Click "Save"
17
17
18
-
There are four main building blocks that impact the results of your saved query. You can use a combination of these to narrow down your search.
18
+
There are five main building blocks that impact the results of your saved query, a combination of which can be used to narrow down your search:
19
19
20
-
1. Project, environment, and date range filters
21
-
2. Search Conditions
22
-
3. Interactive Graph
23
-
4. Table Columns
20
+
1. Dataset selection
21
+
2. Project, environment, and date range filters
22
+
3. Search conditions
23
+
4. Interactive graph
24
+
5. Table columns
25
+
26
+
## Dataset Selection
27
+
28
+
The dataset selector allows you to query for either errors or transactions. You can only query one dataset at a time. The errors dataset returns events related to errors, while the transactions dataset returns transaction events that help you see application performance.
24
29
25
30
## Filter by Project, Environment, and Date Range
26
31
@@ -101,8 +106,16 @@ Above the table, click "Columns" to open the modal that shows you a list of all
101
106
102
107
### Stacking Functions
103
108
104
-
You can also add any of the following functions as columns to stack events:
109
+
You can also add the following functions as columns to stack events, depending on the selected dataset:
@@ -71,7 +72,8 @@ Create a report looking into all the errors occurring in the URL endpoints acros
71
72
72
73
Whether your code is running on mobile, in browser, or on a server, an unhandled fatal error might crash your application. To find out where those crashes are happening, run the following query in **Discover**:
0 commit comments