Install and upgrade the Splunk data source plugin
This document covers how to install, upgrade, and verify the Splunk data source plugin across different Grafana deployment environments. After the plugin is installed, refer to Configure the Splunk data source to set up a connection.
Before you begin
Verify the following requirements before installing:
Install the plugin
Choose the installation method that matches your Grafana deployment.
Grafana Cloud
Enterprise plugins must be activated for your organization before they appear as installable in the plugin catalog.
- Go to grafana.com/orgs and sign in with your Grafana Cloud account.
- Select your organization.
- Navigate to the Plugins tab and verify that the Splunk plugin is activated. If it isn’t listed, confirm your Cloud plan includes Enterprise plugins.
- In your Grafana Cloud instance, navigate to Administration > Plugins and data > Plugins.
- Search for Splunk and click Install.
Note
If the Install button doesn’t appear, verify that the plugin is activated for your organization at grafana.com/orgs and that your Cloud plan is Pro or Advanced.
Self-managed Grafana (CLI)
grafana cli plugins install grafana-splunk-datasourceRestart Grafana after installation:
sudo systemctl restart grafana-serverDocker
Set the GF_INSTALL_PLUGINS environment variable:
environment:
- GF_INSTALL_PLUGINS=grafana-splunk-datasource
- GF_ENTERPRISE_LICENSE_TEXT=<YOUR_LICENSE>Kubernetes (Helm chart)
Add the plugin to your Helm values:
plugins:
- grafana-splunk-datasource
envFromSecret: grafana-license-secretOr use the GF_INSTALL_PLUGINS environment variable in your deployment spec:
env:
- name: GF_INSTALL_PLUGINS
value: "grafana-splunk-datasource"
- name: GF_ENTERPRISE_LICENSE_TEXT
valueFrom:
secretKeyRef:
name: grafana-license
key: license.jwtKubernetes (init container)
If you don’t control the Helm chart (for example, on a shared platform cluster), use an init container to download the plugin before Grafana starts:
initContainers:
- name: install-plugins
image: curlimages/curl:latest
command:
- sh
- -c
- |
curl -sL https://grafana.com/api/plugins/grafana-splunk-datasource/versions/latest/download \
-o /plugins/grafana-splunk-datasource.zip && \
unzip /plugins/grafana-splunk-datasource.zip -d /plugins/
volumeMounts:
- name: plugins
mountPath: /pluginsMount the same volume at /var/lib/grafana/plugins in the Grafana container.
Air-gapped (offline) installation
For environments without internet access:
Download the plugin ZIP from your Grafana account portal on a machine with internet access.
Transfer the ZIP to the Grafana server.
Extract to the plugins directory:
unzip grafana-splunk-datasource-<version>.linux_amd64.zip -d /var/lib/grafana/plugins/Set ownership:
chown -R grafana:grafana /var/lib/grafana/plugins/grafana-splunk-datasourceRestart Grafana.
If Grafana reports an “unsigned plugin” error, add the following to grafana.ini:
[plugins]
allow_loading_unsigned_plugins = grafana-splunk-datasourceCaution
Only allow unsigned plugins if you trust the source of the ZIP file. Official downloads from grafana.com are signed.
Verify the installation
After installing, confirm the plugin is loaded:
- Navigate to Administration > Plugins and data > Plugins.
- Search for Splunk and verify the plugin appears with a status of Installed.
- Navigate to Connections > Add new connection and search for Splunk to confirm it’s available as a data source.
- If the plugin doesn’t appear, check the Grafana server logs for errors and refer to Troubleshoot installation issues.
Upgrade the plugin
Upgrade steps depend on your Grafana deployment environment.
Grafana Cloud
Plugins are automatically updated on Grafana Cloud. No manual action is required. If you experience issues after an automatic update, contact Grafana Support.
Self-managed Grafana
Update the plugin:
grafana cli plugins update grafana-splunk-datasourceRestart Grafana.
Verify each data source connection with Save & test.
To install a specific version:
grafana cli plugins install grafana-splunk-datasource <version>For Docker or Kubernetes, append the version to the plugin name:
environment:
- GF_INSTALL_PLUGINS=grafana-splunk-datasource <version>Roll back to a previous version
If an upgrade causes issues on a self-managed instance, pin a specific plugin version:
grafana cli plugins install grafana-splunk-datasource 5.8.19Restart Grafana after the rollback.
Note
Rollback is not available on Grafana Cloud. If you experience issues after an automatic update, contact Grafana Support.
Uninstall the plugin
To remove the Splunk plugin from a self-managed Grafana instance:
grafana cli plugins remove grafana-splunk-datasourceRestart Grafana after uninstalling. Existing data source configurations are preserved in the Grafana database but become non-functional until the plugin is reinstalled.
For Docker or Kubernetes, remove grafana-splunk-datasource from the GF_INSTALL_PLUGINS variable and redeploy.
Troubleshoot installation issues
The following sections address common installation problems.
Plugin doesn’t appear in the catalog (Grafana Cloud)
Cause: The Enterprise plugin isn’t activated for your organization.
Solution:
- Go to grafana.com/orgs.
- Select your organization and navigate to the Plugins tab.
- Verify that the Splunk plugin is listed and activated.
- Confirm your Cloud plan is Pro or Advanced. Free and Starter plans don’t include Enterprise plugins.
“Plugin not found” or install button missing
Cause: Your Grafana instance doesn’t have access to the Enterprise plugin repository.
Solution:
- Grafana Cloud: Verify plugin activation at grafana.com/orgs.
- Self-managed: Verify your Grafana Enterprise license is active. The license must be set via the
GF_ENTERPRISE_LICENSE_TEXTenvironment variable or the license path. Refer to Activate an Enterprise license.
License key errors (self-managed)
Cause: The GF_ENTERPRISE_LICENSE_TEXT environment variable contains an invalid or malformed license key.
Solution:
- Verify the license key doesn’t contain extra whitespace, line breaks, or truncated characters.
- Confirm the key is for the correct Grafana instance URL.
- Check that the license hasn’t expired at grafana.com/orgs.
- For license activation help, refer to Activate an Enterprise license.
“Unsigned plugin” error (air-gapped installs)
Cause: The plugin was installed from a ZIP file and Grafana can’t verify its signature.
Solution:
- Ensure you downloaded the ZIP from the official Grafana account portal. Official downloads are signed.
- If the error persists, add
allow_loading_unsigned_plugins = grafana-splunk-datasourcetografana.iniunder[plugins]. - Restart Grafana.


