Enterprise Open source Grafana Cloud

Before you begin

Caution

Git Sync is available in public preview for Grafana Cloud, and is an experimental feature in Grafana v12 for open source and Enterprise editions. Documentation and support is available based on the different tiers but might be limited to enablement, configuration, and some troubleshooting. No SLAs are provided.

Git Sync is under development. Refer to Usage and performance limitations for more information. Contact Grafana for support or to report any issues you encounter and help us improve this feature.

Before you begin to set up Git Sync, ensure you have the following:

Get acquainted with the following topics:

For further details on how Git Sync operates refer to key concepts.

Enable required feature toggles

In Grafana Cloud, Git Sync is being rolled out gradually. For more details refer to Rolling release channels for Grafana Cloud.

To activate Git Sync in Grafana OSS/Enterprise, set the provisioning feature toggle to true:

  1. Open your Grafana configuration file, either grafana.ini or custom.ini.

  2. Add this value:

    ini
    [feature_toggles]
    provisioning = true
  3. Save the changes to the file and restart Grafana.

For more information about feature toggles, refer to Configure feature toggles.

Create a GitHub App

GitHub Apps are tools that extend GitHub functionality. They use fine-grained permissions and short-lived tokens, giving you more control over which repositories are being accessed. Find out more in the GitHub Apps official documentation.

If you chose to authenticate with a newly created GitHub App, you’ll need the following parameters:

  • GitHub App ID
  • GitHub App Private Key
  • GitHub App Installation ID

There are many ways to create a GitHub App. The following instructions are informative only, always refer to official GitHub documentation for more details.

To create the GitHub App, follow these steps:

  1. Go to https://github.com/settings/apps and click on New Github App, or navigate directly to https://github.com/settings/apps/new
  2. Fill in the following fields:
    • Name: Must be unique
    • Homepage URL: For example, your Grafana Cloud instance URL
  3. Scroll down to the Webhook section and uncheck the Active box
  4. In the Permissions section, go to Repository permissions and set these parameters:
    • Contents: Read and write permission
    • Metadata: Read-only permission
    • Pull requests: Read and write permission
    • Webhooks: Read and write permission
  5. Finally, under Where can this GitHub App be installed?, select Only on this account
  6. Click on Create Github App to complete the process.

On the app page:

  1. Copy the AppID from the About section
  2. Select the Generate private key from the banner or scroll down to to the Private Keys section to generate a key
  3. A PEM file containing your private key will be downloaded to your computer

Finally, install the app:

  1. At the top left of the App page, click on Install App
  2. Choose for which user you need to install it, you’ll be redirected to the repository selection screen
  3. Choose for which repositories you want to install the app
  4. Click Install.
  5. On the installation page, copy installationID from the page URL https://github.com/settings/installations/installationID

You can now proceed to Set up Git Sync!