Commit 2d433b2
authored
fix(insights): Fix empty txn summary when transaction.op is default (#113099)
Relay [doesn't extract transaction ops when they have the default value
of
`default`](https://github.com/getsentry/relay/blob/ae5a27cb9c7571c821099e778ce921d3b908df77/relay-event-normalization/src/normalize/utils.rs#L158-L165).
Since links into the transaction summary from insights include the
transaction op as a filter, `transaction.op:default` was returning an
empty screen.
Instead, use `span.op` when linking into transaction summary:
- `default` is populated here correctly, so the page works
- it's span first/span streaming compatible
This fixes both the Insights and Prebuilt Dashboard versions of the
transaction link rendering (and removes an old comment calling out the
`span.op`/`transaction.op` name discrepancy).1 parent 42a379c commit 2d433b2
File tree
2 files changed
+12
-4
lines changed- static/app/views
- dashboards/datasetConfig
- insights/pages
2 files changed
+12
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
474 | 474 | | |
475 | 475 | | |
476 | 476 | | |
477 | | - | |
| 477 | + | |
478 | 478 | | |
479 | | - | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
480 | 483 | | |
481 | 484 | | |
482 | | - | |
483 | 485 | | |
484 | 486 | | |
485 | 487 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| 11 | + | |
| 12 | + | |
11 | 13 | | |
12 | 14 | | |
13 | 15 | | |
| |||
21 | 23 | | |
22 | 24 | | |
23 | 25 | | |
| 26 | + | |
24 | 27 | | |
25 | 28 | | |
26 | 29 | | |
27 | 30 | | |
28 | 31 | | |
29 | | - | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
30 | 36 | | |
31 | 37 | | |
32 | 38 | | |
| |||
0 commit comments