You can now apply latency filters to a UQL span query in a dashboard or notebook.
For example, the following query will count all spans in the “web” service with a latency greater than 30s:
1
2
3
4
spans count
| filter service == "web" && latency > 30s
| delta
| group_by [], sum
Updated Nov 6, 2023