* Add UI license upload option, reformat Enterprise license activation section Added the option to upload a license file through the Server Admin UI, and did a little reformatting to make license activation look more like a process. * Headers not bold, hyphens not asterisks
5.7 KiB
Executable File
+++ title = "Grafana Enterprise" description = "Grafana Enterprise overview" keywords = ["grafana", "documentation", "datasource", "permissions", "ldap", "licensing", "enterprise", "insights", "reporting"] type = "docs" [menu.docs] name = "Grafana Enterprise" identifier = "enterprise" weight = 100 +++
Grafana Enterprise
Grafana Enterprise is a commercial edition of Grafana that includes additional features not found in the open source version.
Building on everything you already know and love about Grafana, Grafana Enterprise includes [exclusive datasource plugins]({{< relref "#enterprise-plugins">}}) and [additional features]({{< relref "#enterprise-features">}}). On top of that you get 24x7x365 support and training from the core Grafana team.
Learn more about Grafana Enterprise.
Authentication
Grafana Enterprise includes integrations with more ways to authenticate your users and enhanced authentication capabilities.
Team sync
[Team sync]({{< relref "team-sync.md" >}}) allows you to set up synchronization between teams in Grafana and teams in your auth provider so that your users automatically end up in the right team.
Supported auth providers:
- [Auth Proxy]({{< relref "../auth/auth-proxy.md#team-sync-enterprise-only">}})
- [Azure AD OAuth]({{< relref "../auth/azuread.md#team-sync-enterprise-only" >}})
- [GitHub OAuth]({{< relref "../auth/github.md#team-sync-enterprise-only" >}})
- [GitLab OAuth]({{< relref "../auth/gitlab.md#team-sync-enterprise-only" >}})
- [LDAP]({{< relref "enhanced_ldap.md#ldap-group-synchronization-for-teams" >}})
- [Okta]({{< relref "../auth/okta.md#team-sync-enterprise-only" >}})
- [SAML]({{< relref "saml.md#configure-team-sync" >}})
Enhanced LDAP integration
With Grafana Enterprise [enhanced LDAP]({{< relref "enhanced_ldap.md" >}}), you can set up active LDAP synchronization.
SAML authentication
[SAML authentication]({{< relref "saml.md" >}}) enables your Grafana Enterprise users to authenticate with SAML.
Enterprise features
With Grafana Enterprise, you get access to new features, including:
- [Data source permissions]({{< relref "datasource_permissions.md" >}}) to restrict query access to specific teams and users.
- [Reporting]({{< relref "reporting.md" >}}) to generate a PDF report from any dashboard and set up a schedule to have it emailed to whoever you choose.
- [Export dashboard as PDF]({{< relref "export-pdf.md" >}})
- [White labeling]({{< relref "white-labeling.md" >}}) to customize Grafana from the brand and logo to the footer links.
- [Usage insights]({{< relref "usage-insights.md" >}}) to understand how your Grafana instance is used.
- [Vault integration]({{< relref "vault.md" >}}) to manage your configuration or provisioning secrets with Vault.
Enterprise plugins
With a Grafana Enterprise license, you get access to premium plugins, including:
Try Grafana Enterprise
To purchase or obtain a trial license contact the Grafana Labs Sales Team.
Activate an Enterprise license
Follow these steps to activate your Grafana Enterprise license:
1. Download your license file
To download your Grafana Enterprise license, log in to your Grafana Cloud Account and go to your Org Profile. In the side menu there is a section for Grafana Enterprise licenses. At the bottom of the license details page there is Download Token link that will download the license.jwt file containing your license.
2. Add your license file to a Grafana instance
There are two different ways to add the license file to a Grafana instance:
-
Option 1: Upload the license file through the Grafana Server Administrator page
Sign in as a Server Administrator. Navigate to Server Admin > Upgrade within Grafana, click on Upload license token file, select your license file, and upload it.
-
Option 2: Place the license.jwt file in Grafana's data folder.
This is usually located at
/var/lib/grafana
on Linux systems.You can also configure a custom location for the license file via the ini setting:
[enterprise] license_path = /company/secrets/license.jwt
This setting can also be set with an environment variable, which is useful if you're running Grafana with Docker and have a custom volume where you have placed the license file. In this case, set the environment variable
GF_ENTERPRISE_LICENSE_PATH
to point to the location of your license file.
3. Ensure that the license file's root url matches the root_url configuration option
Update the root_url
in your configuration. It should be the URL that users type in their browsers to access the frontend, not the node hostname(s).
This is important, because as part of the validation checks at startup, Grafana compares the license URL to the root_url
in your configuration.
In your configuration file:
[server]
root_url = https://grafana.blah.com/
Or with an environment variable:
GF_SERVER_ROOT_URL=https://grafana.blah.com/