Menu

Configuring the Zendesk data source plugin

This document outlines configuration options for the Zendesk data source.

Configuring the Zendesk plugin is a two step process:

  1. Installing the zendesk plugin
  2. Configuring the zendesk data source

Installing the Zendesk plugin

To install a plugin, see Install Grafana plugins.

To install the Zendesk plugin, see Installation on the Zendesk plugin page.

Configuring the Zendesk data source

For general information on adding a data source see Add a data source. Only users with the organization administrator role can add data sources.

Set the Zendesk data source’s basic configuration options:

NameDescription
NameThe data source name. This is how you refer to the data source in panels and queries.
SubdomainThe subdomain of your Zendesk instance. For example, if your Zendesk URL is https://company.zendesk.com, then the subdomain is company.
EmailThe email of your Zendesk account.
TokenThe API token for your zendesk instance

Configure the data source with provisioning

It is possible to configure data sources using configuration files with Grafana’s provisioning system. To read about how it works, including and all the settings that you can set for this data source, refer to Provisioning Grafana data sources.

Here is a provisioning example for this data source:

yaml
apiVersion: 1
datasources:
  - name: Zendesk Data Source
    type: grafana-zendesk-datasource
    basicAuth: true
    jsonData:
      services:
        zendesk:
          auth:
            username: '<email_address>'
      variables:
        subdomain: '<zendesk_subdomain>'
    secureJsonData:
      zendesk.password: '<zendesk_api_token>'