Menu
Grafana Cloud RSS

What’s new in Grafana Cloud

Grafana Labs products, projects, and features can go through multiple release stages before becoming generally available. These stages in the release life cycle can present varying degrees of stability and support. For more information, refer to release life cycle for Grafana Labs.

Loading...
Loading...

Generally AvailableKubernetes Monitoring
Release date: 2024-04-18

User experience improvements in Kubernetes Monitoring

Control the automatic refresh interval of the GUI as well as disable the auto refresh until you are ready to do so manually. This is particularly useful for very large Kubernetes fleets that display a lot of data. From the Clusters, Nodes, and Namespaces list pages, select multiple Clusters from the filters.

User experience improvements in Kubernetes Monitoring

Generally AvailableKubernetes Monitoring
Release date: 2024-04-15

Cardinality page in Kubernetes Monitoring

Use the in-app Cardinality page to discover on a Cluster-by-Cluster basis where all your active series are coming from for: Troubleshooting after initial configuration Determining potential duplicate metrics Finding other potential cardinality issues From the main menu, click Configuration and then the Cardinality tab.

Cardinality page in Kubernetes Monitoring

Generally AvailableDashboards and visualizationsData sources
Release date: 2024-04-09

Explore Metrics

Explore Metrics is a query-less experience for browsing Prometheus-compatible metrics. Search for or filter to find a metric. Quickly find related metrics - all in just a few clicks. You do not need to learn PromQL! With Explore Metrics, you can: easily slice and dice metrics based on their labels, so you can see anomalies right away See the right visualization for your metric based on its type (e.g. gauge vs.


Generally AvailableK6
Release date: 2024-04-09

Export a Grafana Cloud k6 test result to a dashboard summary

After you run a performance test in Grafana Cloud k6, the next step is to analyze the results and share any findings with your team. Sometimes, you don’t need your team members to view all the resulting metrics, or you might want to generate a PDF in an accessible, easy-to-read format to share with external stakeholders. The new export summary functionality in Grafana Cloud k6 allows you to export your test results as a Grafana dashboard.

Export a Grafana Cloud k6 test result to a dashboard summary

Generally AvailableDashboards and visualizations
Release date: 2024-04-09

Colored table rows with conditional formatting

Grafana 11 adds the ability to color full table rows using the Colored background cell type of the table visualization. When you configure fields in a table to use this cell type, an option to apply the color of the cell to the entire row becomes available. This feature is useful for a wide variety of use cases including mapping status fields to colors (for example, info, debug, warning) and allowing rows to be colored based on threshold values.

Colored table rows with conditional formatting

Generally Available
Release date: 2024-04-05

Crafting robust plugins: introducing grafana/plugin-e2e

Plugin developers and users typically want their plugins to be compatible with a range of Grafana versions. However, ensuring this is true can be a challenge. The environment, APIs, and UI components may differ from one version to another. Manual testing is tedious and error-prone. End-to-End testing across multiple versions is prohibitively complicated given the version-to-version changes in Grafana itself - until now. We would like to introduce @grafana/plugin-e2e - a new end-to-end testing library that is designed specifically for Grafana plugin developers.


Generally AvailableAlerting
Release date: 2024-04-04

RBAC for alert rule provisioning APIs

The Alerting Provisioning HTTP API has been updated to enforce Role-Based Access Control (RBAC). For Grafana OSS, users with the Editor role can now use the API. For Grafana Enterprise and Grafana Cloud, users with the role Rules Writer and Set Provisioning status can access the API and limit access to alert rules that use a particular data source. Other roles related to provisioning, for example Access to alert rules provisioning API still work.


Generally AvailableAlerting
Release date: 2024-04-03

Improved paused alert visibility

Pause and resume alert rule evaluation directly from the Alert rules list and details view. This helps Improve visibility of when alert rules have been paused by displaying “Paused” as the alert rule state.


Available in public previewData sourcesLogsAuthentication and authorization
Release date: 2024-04-01

Team LBAC

It is hard for teams to collaborate on dashboards because they have to use different datasources. Grafana instances become cluttered and confusing with 100s of datasources. Team LBAC (Label Based Access Control) is our first step towards seamless management of Grafana Teams access for Loki logs. Each team views the same data source filtered by their team’s label permissions. Feature highlights Teams can view queries to the same data source with different LBAC rules applied Configurable via API and the UI Simplified LBAC notation is automatically converted in correct custom headers Best practices

Team LBAC

Public Preview
Release date: 2024-03-27

AWS Logs with Firehose available in public preview

AWS Logs with Firehose is currently in public preview. Grafana Labs offers limited support, and breaking changes might occur prior to the feature being made generally available. Logs with Firehose process to deliver logs to Grafana Cloud Logs with Firehose leverages Amazon Kinesis Data Firehose and a minimal infrastructure to deliver logs to the ingestion pipeline within Grafana Cloud.

AWS Logs with Firehose available in public preview

Generally AvailableAlerting
Release date: 2024-03-26

Updated notification policies design

Notification policies are evaluated from top to bottom, so it is key to be able to choose which notification policy receives alerts first. This feature enables you to add notification policies as siblings instead of always inserting a child policy as well as choose where to insert new notification policies by selecting insert above or below.


Generally AvailableK6
Release date: 2024-03-25

Update to Grafana Cloud k6 cloud options

You can use Grafana Cloud k6 cloud options to configure additional test parameters, such as how to distribute your test across load zones, or to use static IP addresses. Before, you would use the options.ext.loadimpact object to pass any configuration parameters. Now, you can use the options.cloud object instead: JavaScript Copy export const options = { cloud: { name: 'Hello k6 cloud!', projectID: 123456, staticIPs: true, }, }; The options.ext.loadimpact object will be deprecated in the future.