Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Enterprise Open source

Data source management

Grafana supports many different storage backends for your time series data (data source). Refer to data sources for more information about using data sources in Grafana. Only users with the organization admin role can add data sources.

Add a data source

Before you can create your first dashboard, you need to add your data source.

Note: Only users with the organization admin role can add data sources.

To add a data source:

  1. Select the cog icon on the side menu to show the configuration options.

  2. Select Data sources.

    This opens the data sources page, which displays a list of previously configured data sources for the Grafana instance.

  3. Select Add data source to see a list of all supported data sources.

  4. Enter the name of a specific data source in the search dialog.

    You can also scroll through supported data sources grouped into time series, logging, tracing, and other categories.

  5. Move the cursor over the data source you want to add.

  6. Click Select.

    This opens the data source configuration page.

  7. Configure the data source following instructions specific to that data source.

    For links to data source-specific documentation, see Data sources.

Data source permissions

You can configure data source permissions to allow or deny certain users the ability to query a data source. Each data source’s configuration includes a permissions page where you can enable permissions and restrict query permissions to specific Users and Teams.

Note: Available in Grafana Enterprise and Grafana Cloud Pro and Advanced.

Enable data source permissions

By default, data sources in an organization can be queried by any user in that organization. For example, a user with the Viewer role can issue any possible query to a data source, not just queries that exist on dashboards they have access to.

When permissions are enabled for a data source in an organization, the user who created the datasource can edit the datasource and in addition, viewers can query the datasource.

Enable permissions for a data source:

  1. Navigate to Configuration > Data Sources.
  2. Select the data source you want to enable permissions for.
  3. On the Permissions tab, click Enable.

Caution: Enabling permissions for the default data source makes users not listed in the permissions unable to invoke queries. Panels using default data source will return Access denied to data source error for those users.

Allow users and teams to query a data source

After you have enabled permissions for a data source you can assign query permissions to users and teams which will allow access to query the data source.

Assign query permission to users and teams:

  1. Navigate to Configuration > Data Sources.
  2. Select the data source you want to assign query permissions for.
  3. On the Permissions tab, click Add Permission.
  4. Select Team or User.
  5. Select the entity you want to allow query access and then click Save.

Disable data source permissions

If you have enabled permissions for a data source and want to return data source permissions to the default, then you can disable permissions with a click of a button.

Note that all existing permissions created for the data source will be deleted.

Disable permissions for a data source:

  1. Navigate to Configuration > Data Sources.
  2. Select the data source you want to disable permissions for.
  3. On the Permissions tab, click Disable Permissions.

Query caching

When query caching is enabled, Grafana temporarily stores the results of data source queries. When you or another user submit the exact same query again, the results will come back from the cache instead of from the data source (like Splunk or ServiceNow) itself.

Query caching works for all backend data sources. You can enable the cache globally and configure the cache duration (also called Time to Live, or TTL).

Note: Available in Grafana Enterprise and Grafana Cloud Pro and Advanced.

The following cache backends are available: in-memory, Redis, and Memcached.

Note: Storing cached queries in-memory can increase Grafana’s memory footprint. In production environments, a Redis or Memcached backend is highly recommended.

When a panel queries a cached data source, the time until this query fetches fresh data is determined by the panel’s interval. This means that wider panels and dashboards with shorter time ranges fetch new data more frequently than narrower panels and dashboards with longer time ranges.

Interval is visible in a panel’s query options. It is calculated like this: (max data points) / time range. Max data points are calculated based on the width of the panel. For example, a full-width panel on a dashboard with a time range of last 7 days will retrieve fresh data every 10 minutes. In this example, cached data for this panel will be served for up to 10 minutes before Grafana queries the data source again and returns new data.

You can make a panel retrieve fresh data more frequently by increasing the Max data points setting in the panel’s query options.

Query caching benefits

  • Faster dashboard load times, especially for popular dashboards.
  • Reduced API costs.
  • Reduced likelihood that APIs will rate-limit or throttle requests.

Data sources that work with query caching

Query caching works for all Enterprise data sources as well as the following built-in data sources:

  • CloudWatch Metrics
  • Google Cloud Monitoring
  • InfluxDB
  • Microsoft SQL Server
  • MySQL
  • Postgres
  • Tempo

Some data sources, such as Elasticsearch, Prometheus, and Loki, cache queries themselves, so Grafana query caching does not improve performance.

Query caching also works for all data sources that include a backend. More specifically, caching works with data sources that extend the DataSourceWithBackend class in the plugins SDK.

To tell if a data source works with query caching, follow the instructions below to Enable and Configure query caching. If caching is enabled in Grafana but the Caching tab is not visible for the given data source, then query caching is not available for that data source.

Enable and configure query caching

You must be an Org admin or Grafana admin to enable query caching for a data source. For more information on Grafana roles and permissions, refer to About users and permissions.

By default, data source queries are not cached. To enable query caching for a single data source:

  1. On the side menu, click Configuration > Data Sources.
  2. In the data source list, click the data source that you want to turn on caching for.
  3. Open the Cache tab.
  4. Press the Enable button.
  5. (Optional) Choose custom TTLs for the data source’s queries and resources caching. If you skip this step, then Grafana uses the default TTL.

Note: If query caching is enabled and the Cache tab is not visible in a data source’s settings, then query caching is not available for that data source.

To configure global settings for query caching, refer to the Query caching section of Enterprise Configuration.

Disable query caching

To disable query caching for a single data source:

  1. On the side menu, click Configuration > Data Sources.
  2. In the data source list, click the data source that you want to turn off caching for.
  3. In the Cache tab, click Disable.

To disable query caching for an entire Grafana instance, set the enabled flag to false in the Query caching section of Enterprise Configuration. You will no longer see the Cache tab on any data sources, and no data source queries will be cached.

Clear cache

If you experience performance issues or repeated queries become slower to execute, consider clearing your cache.

Note: This action impacts all cache-enabled data sources. If you are using Memcached, the system clears all data from the Memcached instance.

  1. Sign in to Grafana and click Settings > Data Sources.
  2. Select a data source.
  3. Click the Cache tab.
  4. Click Clear cache.

Sending a request without cache

If a data source query request contains an X-Cache-Skip header, then Grafana skips the caching middleware, and does not search the cache for a response. This can be particularly useful when debugging data source queries using cURL.

Add data source plugins

Grafana ships with several built-in data sources. You can add additional data sources as plugins, which you can install or create yourself.

Find data source plugins in the plugin catalog

To view available data source plugins, go to the plugin catalog and select the “Data sources” filter. For details about the plugin catalog, refer to Plugin management.

You can further filter the plugin catalog’s results for data sources provided by the Grafana community, Grafana Labs, and partners. If you use Grafana Enterprise, you can also filter by Enterprise-supported plugins.

For more documentation on a specific data source plugin’s features, including its query language and editor, refer to its plugin catalog page.

Create a data source plugin

To build your own data source plugin, refer to the “Build a data source plugin” tutorial and our documentation about building a plugin.