What Is New in Grafana 12.2
| Category | Highlights |
|---|---|
| New Features | GA Table visualization, Canvas pan/zoom redesign, SQL expressions public preview, Metrics Drilldown entry from alerts, Logs Drilldown JSON viewer GA, SCIM Configuration UI, Jenkins data source, Google Sheets template variables, Azure Monitor resource picker filtering |
| Improvements | Tooltip-from-field in tables, enhanced table footer with multiple reducers, optional tooltips in Canvas, static options for query variables, dynamic connection direction, redesigned Reporting UI, save/reuse queries in Explore, new default dashboard APIs |
How does the new Table visualization improve performance and usability?
Grafana 12.2 ships the Table visualization as a generally available feature built on the react-data-grid library, delivering noticeable speed gains for large result sets.
- Rendering is now virtualized, so scrolling through thousands of rows remains fluid.
- New "Tooltip from field" switch lets you surface any column's value in a hover tooltip, even if the column is hidden.
- The footer can run multiple reducers simultaneously, giving you totals, averages, and custom calculations at a glance.
In practice, teams that previously avoided tables for high-cardinality metrics can now embed them directly in operational dashboards without sacrificing responsiveness.
// Example: enable tooltip from the "host" field
{
"type": "table",
"options": {
"tooltipMode": "field",
"tooltipField": "host"
}
}
What new Canvas visualization capabilities are available and how do they affect dashboard design?
The Canvas editor now includes a re-engineered pan and zoom experience, allowing you to place elements beyond panel borders while preserving connections.
- Background images stay anchored during zoom, preventing visual drift.
- Connection arrows rotate with their source elements, keeping topology clear.
- A "Zoom to content" toggle automatically fits all elements into view.
- Dynamic connection direction can be driven by a field value (positive = forward, negative = reverse, zero = no arrow) or set to a fixed direction.
- Tooltips can be globally disabled for Canvas panels, reducing visual noise when needed.
This matters if you build network maps or service topologies that need to scale on large screens or be printed at different zoom levels.
How can I explore data more efficiently with ad-hoc filters, saved queries, and drill-down features?
Grafana 12.2 introduces a unified workflow for data exploration that combines ad-hoc filters, query saving, and drill-down entry points.
- Ad-hoc filters now work on a dataset produced by a first panel (including SQL sources), letting downstream panels inherit the filtered view.
- Queries can be saved directly from Dashboards or Explore, then reused across panels or shared with teammates.
- Metrics Drilldown can be launched from an alert rule, letting you jump from an alert to a point-and-click exploration of the underlying Prometheus series.
- Logs Drilldown's JSON viewer is GA, providing a hierarchical view of log lines without leaving the panel.
Most teams will see faster root-cause analysis because the same query can be inspected, refined, and promoted to an alert without manual copy-paste.
What new data source and reporting features are included in Grafana 12.2?
Grafana 12.2 adds several data source enhancements and a streamlined reporting workflow.
- Jenkins Enterprise data source (preview) with built-in dashboards for builds, queues, and node metrics.
- Google Sheets now supports template variables, enabling dynamic spreadsheet-driven dashboards.
- Azure Monitor resource picker includes filtering and recent-resource shortcuts for large estates.
- Reporting UI redesign lets you schedule a report from the Share → Schedule report drawer while staying on the dashboard, with one-page report creation and quick access to organization settings.
These updates reduce the friction of integrating external systems and make it easier to deliver consistent, context-aware reports to stakeholders.
Frequently Asked Questions
Will existing table panels need to be recreated after the GA Table visualization is enabled?
Most panels will upgrade automatically, but custom plugins that rely on the old table implementation may need adjustments.
How do I activate the new Canvas pan and zoom features?
Open the Canvas editor, click the Pan/Zoom tab, and toggle the "Enable advanced pan/zoom" switch.
Can ad-hoc filters be used with Prometheus data sources in this release?
Yes, you can query a first panel with Prometheus and then apply ad-hoc filters to downstream panels that reference that dataset.
How do I create a SQL expression in public preview?
In the query editor select "SQL Expressions" and write a MySQL-style query such as SELECT avg(value) FROM metrics WHERE $__timeFilter(timestamp).
Is the Jenkins data source included in the open-source edition?
No, the Jenkins data source is currently a public preview feature for Grafana Cloud and Enterprise only.
How can I schedule a report without leaving the dashboard?
Click Share → Schedule report, fill the drawer form, and click Save; the dashboard remains in view.