Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/content/en/blog/2025/query-rejection.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Think of query rejection as an “emergency stop” in a factory. It sits in fro

Heavy queries often share identifiable traits. Query rejection lets you match on a variety of attributes and reject only those requests. You can combine as many of these as needed:

- **API type:** `query`, `query_range`, `series`, etc.
- **API type:** `query`, `query_range`. For now, query rejection only applies to these two API types.
- **Query string (regex):** Match by pattern, e.g., any query containing “ALERT”.
- **Time range:** Match queries whose range falls between a configured **min** and **max**.
- **Time window:** Match queries based on how far their time window is from now by specifying relative **min** and **max** boundaries. This is often used to distinguish queries that hit hot storage versus cold storage.
Expand Down
Loading