description: Learn how to send a support bundle to Grafana Labs support for troubleshooting
keywords:
- grafana
- troubleshooting
- support
- bundles
title: Send a support bundle to Grafana Labs support
menutitle: Send a support bundle to support
weight: 200
---
# Send a support bundle to Grafana Labs support
When you encounter problems with your Grafana instance, you can send us a support bundle that contains information about your Grafana instance, including:
- Grafana version
- Installed plugins
- Grafana configuration
- Deployed database information and migrations
## Available support bundle components
A support bundle can include any of the following components:
- **Usage statistics**: Usage statistic for the Grafana instance
- **User information**: A list of users of the Grafana instance
- **Database and Migration information**: Database information and migration log
- **Plugin information**: Plugin information for the Grafana instance
- **Basic information**: Basic information about the Grafana instance (version, memory usage, and so on)
- **Settings**: Settings for the Grafana instance
- **SAML**: Healthcheck connection and metadata for SAML (only displayed if SAML is enabled)
# Only server admins can generate and view support bundles. When set to false, organization admins can generate and view support bundles (default: true)
server_admin_only = true
# If set, bundles will be encrypted with the provided public keys separated by whitespace
public_keys = ""
```
## Encrypting a support bundle
Support bundles can be encrypted with [age](age-encryption.org) before they are sent to
recipients. This is useful when you want to send a support bundle to Grafana through a
channel that is not private.
### Generate a key pair
Ensure [age](https://github.com/FiloSottile/age#installation) is installed on your system.
```bash
$ age-keygen -o key.txt
Public key: age1ql3z7hjy54pw3hyww5ayyfg7zqgvc7w3j2elw8zmrj2kg5sfn9aqmcac8p
```
### Support bundle encryption
Ensure [age](https://github.com/FiloSottile/age#installation) is installed on your system.
Add the public key to the `public_keys` setting in the `support_bundle` section of the Grafana configuration file.