---
title: "Store exemplars in Grafana Mimir | Grafana Mimir documentation"
description: "Learn how to store exemplars in Grafana Mimir."
---

# Store exemplars in Grafana Mimir

You can enable exemplar storage in Grafana Mimir and view the resulting data in Grafana. While exemplars can be enabled for all tenants at once or for only specific tenants, we recommend enabling and enforcing limits for exemplars for only specific tenants.

## Enable exemplars globally

1. In the Grafana Mimir configuration file, set the `limits.max_global_exemplars_per_user` value. Start with a relatively low number (100,000) and adjust it if needed.
   
   A partial Grafana Mimir configuration file with `max_global_exemplars_per_user` set globally looks as follows:
   
   YAML ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy
   
   ```yaml
   limits:
     max_global_exemplars_per_user: 100000
   ```
2. Save and deploy the configuration file.
3. Perform a rolling update of Grafana Mimir components.

## Enable exemplars for a specific tenant

1. Ensure Grafana Mimir uses a runtime configuration file by verifying that the flag `-runtime-config.file` is set to a non-null value. For more information about supported runtime configuration, refer to [Runtime configuration file](../../../configure/about-runtime-configuration/)
2. In the runtime configuration file, set the `overrides.<TENANT>.max_global_exemplars_per_user` value. Start with a relatively low number (100,000) and adjust it if needed.
   
   A partial runtime configuration file with `max_global_exemplars_per_user` set for a tenant called “tenant-a” would look as follows:
   
   YAML ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy
   
   ```yaml
   overrides:
     "tenant-a":
       max_global_exemplars_per_user: 100000
   ```
3. Save and deploy the runtime configuration file.

After the `-runtime-config.reload-period` has elapsed, components reload the runtime configuration file and use the updated configuration.
