getsentry / getsentry/sentry-mcp
search_events: Aggregation queries missing has: filter for grouped fields
- Dominant language
- TypeScript
- Stars
- 853
- Forks
- 144
- Avg merge
- 19h 25m
- Merged PRs (30d)
- 32
Description
## Problem
When generating aggregation queries that group by a field (e.g., `count() by mcp.tool.name`), the tool doesn't automatically add a `has:` filter to ensure only events containing that field are included.
## Example
Query: "give me a table of tool call names with their count from the last 24 hours"
Current behavior generates:
```
count() by mcp.tool.name
```
Should generate:
```
has:mcp.tool.name count() by mcp.tool.name
```
## Impact
Without the `has:` filter, aggregation results include events that don't have the grouped field, leading to incorrect or empty results.
## Fix
When generating aggregation queries with `group by`, automatically prepend the appropriate `has:` filter for each grouped field.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.