We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
first_seen
1 parent da3b0ef commit 50f0c86Copy full SHA for 50f0c86
src/sentry/search/eap/occurrences/search_executor.py
@@ -50,8 +50,9 @@
50
# The EAP SearchResolver parses function syntax like count():>100 as AggregateFilter objects
51
# and routes them to the aggregation_filter field on the RPC request.
52
AGGREGATION_FIELD_TO_EAP_FUNCTION: dict[str, str] = {
53
- "times_seen": "count()",
54
"last_seen": "last_seen()",
+ "times_seen": "count()",
55
+ "first_seen": "first_seen()",
56
"user_count": "count_unique(user)",
57
}
58
0 commit comments