ClickHouse annotations
Annotations overlay event markers on your dashboard panels. You can use ClickHouse SQL queries to create annotations that mark deployments, alerts, errors, or other events from your data.
The plugin provides an annotation editor with presets for common patterns. You choose an annotation type, and the editor generates a ClickHouse SQL query that returns a time column and a text column. Grafana positions each row as an annotation on the time axis and shows the text when you hover or click.
The generated SQL is always visible and editable, so you can start from a preset and adjust it, or select Custom SQL and write the query yourself. Annotation queries do not use the full ClickHouse query builder available in panels.
For an overview of annotations in Grafana, see Annotate visualizations.
Before you begin
- Configure the ClickHouse data source.
- Ensure your ClickHouse user has read access to the tables you use in your annotation query.
Create an annotation query
To add a ClickHouse annotation to a dashboard:
- Open the dashboard where you want to add annotations.
- Click Dashboard settings (gear icon) in the top navigation.
- Select Annotations in the left menu.
- Click Add annotation query.
- Enter a Name for the annotation (for example, “Deployments”, “Errors”).
- In the Data source drop-down, select your ClickHouse data source.
- Choose an Annotation Type. Select Custom SQL to write your own query, or the Change Detection preset to generate one. See Annotation presets and Query requirements.
- Use the Column mappings section to map your query columns to Time, Text, and optionally Tags (if your column names differ from Grafana’s defaults).
- Click Apply to save.
Annotation presets
The Annotation Type selector offers two options. Both produce standard annotation SQL that you can edit by hand at any time.
Custom SQL
Write your own annotation query. This is the default and behaves like a plain SQL field. Use it when none of the other presets fit, or as a starting point for an arbitrary query.
Change Detection
Detect when a column value changes over time, such as a deployment (service.version), a configuration value, or a feature flag. The builder walks you through the schema:
- Database and Table: where the values live (for example,
otel_traces). - Watch Column: the column to track. For OpenTelemetry data this is usually a
Mapcolumn such asResourceAttributes. - Map Key: shown when the watch column is a
Map. Pick the key to track, such asservice.version. - Group By: track each value of this column independently. Defaults to
ServiceName.
The generated query buckets rows into 30-second intervals, takes the dominant value in each bucket, and uses lagInFrame() to compare each bucket with the previous one per group. Taking the dominant value keeps a service that runs two versions at once, during a rolling deploy or canary, from flapping between them. It emits one annotation per transition, so a rollback (v1.0 to v1.1 back to v1.0) produces three annotations rather than two:
SELECT
time,
"ServiceName" AS tags,
concat("ServiceName", ': ResourceAttributes.service.version changed to ', version,
if(prev_version != '', concat(' (was ', prev_version, ')'), '')) AS text,
'ResourceAttributes.service.version change' AS title
FROM (
SELECT
toStartOfInterval(Timestamp, INTERVAL 30 second) AS time,
"ServiceName",
topK(1)("ResourceAttributes"['service.version'])[1] AS version,
lagInFrame(topK(1)("ResourceAttributes"['service.version'])[1])
OVER (PARTITION BY "ServiceName" ORDER BY time) AS prev_version
FROM "otel"."otel_traces"
WHERE $__timeFilter(Timestamp)
AND "ResourceAttributes"['service.version'] != ''
GROUP BY "ServiceName", time
ORDER BY "ServiceName", time
)
WHERE prev_version != '' AND prev_version != version
ORDER BY timeThe builder uses Timestamp as the time column, the OpenTelemetry convention for the traces and logs tables. If your table stores time under a different column name, edit the generated query to match (the time column appears in toStartOfInterval and $__timeFilter), or write the query in Custom SQL.
Query requirements
Your SQL query must return at least a time column and a text column. Grafana uses these to place and label each annotation.
Always restrict the query to the dashboard time range so annotations load quickly. Use the $__timeFilter(column) macro in your WHERE clause. If your time column is DateTime64 and you need sub-second precision, use $__timeFilter_ms(column) instead. See the
ClickHouse query editor Macros section for the full list of available macros.
Filter annotations by a dashboard variable
To scope an annotation to the value currently selected in a dashboard variable, reference the variable in your WHERE clause. This is useful on a per-service dashboard, where you want deployment markers to follow the selected service rather than show every service at once.
For a single-value variable:
WHERE $__timeFilter(Timestamp)
AND ServiceName = '$service'For a multi-value variable with an All option, wrap the filter in $__conditionalAll so the annotation shows every value when All is selected and narrows to the chosen values otherwise:
WHERE $__timeFilter(Timestamp)
AND $__conditionalAll(ServiceName IN ($service), $service)The Change Detection preset keeps its generated SQL editable, so you can build the query with the preset and then add a variable filter for your dashboard.
Annotation query examples
The following examples show common patterns. Replace the table and column names with your own.
Application events (e.g. deployments or status changes):
SELECT
event_time AS time,
message AS text,
environment AS tag
FROM my_app.events
WHERE $__timeFilter(event_time)
AND event_type IN ('deployment', 'status_change')
ORDER BY event_time DESC
LIMIT 100Query log events (e.g. long-running or failed queries from ClickHouse system tables):
SELECT
event_time AS time,
concat(type, ': ', substring(query, 1, 80)) AS text,
initial_user AS tag
FROM system.query_log
WHERE $__timeFilter(event_time)
AND type IN ('QueryFinish', 'ExceptionWhileProcessing')
ORDER BY event_time DESC
LIMIT 100Errors or alerts from a custom table:
SELECT
timestamp AS time,
concat(severity, ' - ', message) AS text,
service AS tag
FROM my_app.alerts
WHERE $__timeFilter(timestamp)
ORDER BY timestamp DESC
LIMIT 100Multiple tags (filter annotations by environment, service, or region):
SELECT
timestamp AS time,
message AS text,
environment AS tag1,
service AS tag2,
region AS tag3
FROM my_app.incidents
WHERE $__timeFilter(timestamp)
ORDER BY timestamp DESC
LIMIT 100Map each tag column in the Column mappings section. In the dashboard, users can filter visible annotations by any combination of these tags.
Region annotation (maintenance windows or time ranges):
SELECT
start_time AS time,
end_time AS timeEnd,
concat(window_type, ': ', description) AS text,
team AS tag
FROM my_app.maintenance_windows
WHERE $__timeFilter(start_time)
ORDER BY start_time DESC
LIMIT 100Map the timeEnd column in the Column mappings section. Grafana draws a shaded region between time and timeEnd instead of a single vertical line.
Ad hoc filter interaction
If the dashboard has ad hoc filters enabled for the ClickHouse data source, those filters are also applied to annotation queries. This means annotation results change as users adjust ad hoc filter values.
If this is not the desired behavior and you want the annotation to always show all events regardless of ad hoc filters, place the $__adHocFilters macro in a SETTINGS clause that targets a different table, or use a separate ClickHouse data source instance without ad hoc filters configured for your annotation queries.
Best practices
- Use a time filter — Include
$__timeFilter(your_time_column)in the WHERE clause so the query only returns data in the dashboard time range. - Limit results — Use
LIMIT(for example, 100) so the query stays fast and the dashboard does not show too many markers. - Meaningful text — Use
concat()or similar so the text column is clear (e.g. event type plus a short description). - Use tags — Return one or more tag columns (e.g. environment, service, user) so users can filter annotations in the dashboard.
- Descriptive names — Give the annotation a clear name (e.g. “Production deployments”, “Query errors”) so dashboard users know what it represents.
Next steps
- ClickHouse query editor — Macros such as
$__timeFilterand building queries. - Annotate visualizations — Grafana annotation options (colors, which panels show annotations, filters).
- Troubleshoot ClickHouse data source issues — Common errors and solutions.


