What Is New in Grafana 11.6
| Category | Highlights |
|---|---|
| New Features | One-click data links & actions, Actions cell type for tables, Cron-based annotation scheduling, Alert rule version history, Service Account migration |
| Improvements | WebGL geomap performance, Dashboard variables in all transformations, Plugin details link standardization |
| Deprecations | API keys fully deprecated, automatic migration to Service Accounts |
How do one-click data links and actions improve dashboard interactivity?
One-click data links and actions let users open links or trigger API calls with a single click, removing the extra "click-to-open" step.
- Canvas visualizations now have a global "One click" toggle.
- Supported visualizations include Graph, Table, Stat, and the new Actions cell type in tables.
- Actions can call unauthenticated endpoints, useful for simple webhooks or CI triggers.
In practice this reduces friction for on-call engineers who need to jump from an alert panel directly to a ticketing system or runbook.
Can I schedule annotations with more granular timing using Cron syntax?
Yes, Grafana 11.6 adds Cron syntax to annotation time regions, enabling schedules like "second Tuesday of every other month at 21:00".
# Example Cron expression for "Weekdays 9-5"
0 9-17 * * 1-5
To use it, create an annotation, enable the Advanced switch, and paste the Cron expression into the time region field.
What performance gains does the new WebGL-powered geomap provide?
The geomap visualization now renders marker layers with WebGL, delivering faster draw times and higher stability for large point sets.
- Significant FPS increase when displaying thousands of locations.
- Reduced browser memory consumption, lowering the risk of crashes on low-end machines.
- Works transparently; no configuration change is required to benefit.
This matters if your team monitors global infrastructure or IoT fleets where map density can be high.
How does Grafana 11.6 extend variable support across transformations?
All transformation input fields now accept dashboard variable syntax, making pipelines fully dynamic.
- Use
${var_name}in any text field of a transformation. - Combine with templating to switch aggregation methods or filter values on the fly.
- No need to duplicate panels for each variable value.
Most teams will see a reduction in panel count and easier maintenance of complex dashboards.
What security changes should I be aware of in Grafana 11.6?
API keys are fully deprecated and have been automatically migrated to Service Accounts, tightening credential management.
- Service Accounts provide scoped permissions and audit trails.
- Existing integrations continue to work without manual changes.
- LBAC (label-based access control) for Mimir metrics is introduced as an experimental feature for finer-grained data source access.
Watch out for any custom scripts that still reference the old API-key endpoint; they will now operate under the Service Account context.
Frequently Asked Questions
Does Grafana 11.6 require any changes to existing one-click data link configurations?
Existing configurations continue to work; the new switch simply adds a single-click option without breaking current links.
How do I migrate existing API keys to Service Accounts after upgrading to 11.6?
The migration is automatic; no manual steps are needed, but you can view the created Service Accounts in the UI under Settings → Service Accounts.
Are there any limitations when using the new Actions cell type in table visualizations?
Actions can only trigger unauthenticated HTTP calls, so you must ensure the target endpoint accepts such requests.
Can I use dashboard variables in transformation fields immediately after upgrade?
Yes, all transformation text inputs now support ${var_name} syntax without additional configuration.
What should I test before enabling WebGL geomaps in production?
Verify that client browsers support WebGL and benchmark rendering speed with your largest dataset to confirm the expected performance gain.
Is LBAC for metrics data sources GA or still experimental in 11.6?
LBAC for Mimir metrics is introduced as an experimental feature in this release.