Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Jira data source for Grafana
Enterprise

Jira data source with Grafana

Get the whole picture of your development process by combining issue data from Jira with application performance data from other sources.

  • Create annotations based on issue creation or resolution, to see the relationship between issues and metrics
  • Track detailed Jira stats, like mean time to resolution and issue throughput

Requirements

In order to use the Jira data source you must meet these requirements:

Known limitations

Custom field types from Jira addons might not be supported.

Install the Jira data source plugin

To install the data source, refer to Installation

Configure Jira with your Atlassian API key

Follow these instructions to create an API Token: Atlassian manage API tokens

Configure the data source

Follow these instructions to add a new Jira data source, and choose from three datasource configuration options:

FieldsDescriptions
NameEnter a name for this particular Jira data source.
URLEnter a root URL for your Atlassian instance, for example https://bletchleypark.atlassian.net
UserEnter an email address for the user/service account, for example joan.clarke@bletchleypark.com
API TokenEnter an API token generated for the user.

Configure the data source with provisioning

Data sources can be configured with Grafana’s provisioning system. You can read more about how it works and all the settings you can set for data sources on the provisioning docs page

yaml
apiVersion: 1
datasources:
  - name: Jira
    type: grafana-jira-datasource
    access: proxy
    basicAuth: false
    editable: true
    enabled: true
    jsonData:
      url: root URL of Atlassian instance
      user: email address for user
    secureJsonData:
      token: API token

Query the data source

From the Jira Query Editor you can select fields and query issues.

Filter and view issues

The Jira data source queries Jira for issues, which can represent bugs, user stories, support tickets, or other tasks in Jira. First select a field that you wish to view and then use JQL to filter and/or sort your issues.

  1. Select Fields

Click the dropdown and use type-ahead to select from any of the fields in your Jira instance, including custom fields. Some fields to try:

  • Summary: the name of the issue

  • Epic Name: the Epic that an issue belongs to

  • Story Point Estimate: The number of Story Points the team has estimated for an issue

  1. Filter and/or Sort Issues

Enter any valid JQL expression to filter and/or sort your issues based on any of their fields like Project, Assignee, or Sprint with the Atlassian query language JQL. For more information, refer to Search JIRA like a boss with JQL.

From here, you can display your data in a table or use Grafana transformations to manipulate that issue data, run calculations, or turn the data into a time series graph. For more information, refer to Apply Transformations

Time series query

To show time series data, choose a Date field along with a numeric field, then switch to graph visualization.

For example: Sprint Start Date, Story point estimate

The above example, on its own, is not very useful. The numeric field can be (and will most likely be) calculated from Transformations.

Using the Group By Transformation would allow grouping by Sprint Start Date and summarizing the Story point estimate allowing a visualization of Story Points over time per Sprint. Learn more about transformations here

Templates and variables

To add a new Jira query variable, refer to Add a query variable. Use your Jira data source as your data source

You can define variables on your dashboards and reference them in JQL expressions.

For example, you can create a project status dashboard and choose between projects, or an epic status dashboard and choose different epics, or a task status dashboard and choose different assignees.

To get a dynamic list of Projects, Epics, Assignees, etc to choose from, create a Query type variable. Query type variables use JQL to query issues and return Projects, Epics, Assignees or anything related to issues.

Example: Create an Assignee variable to get the status of issues by Assignee.

  1. Add a variable of type Query called assignee
  2. Select Field: Assignee
  3. Add JQL Filter (optional): project = 'your project'.
  4. Click the Run button to see the list of Assignees at the bottom.
  5. Click Update to add the variable to the Dashboard.
  6. Add drop down appears on your dashboard with a list of assignees.
  7. Add a panel to the Dashboard, and edit the JQL to filter using your new variable assignee = $assignee.
  8. Now when choosing from the drop down, you only see issues assigned to that user.

Multi-value variables allow selecting multiple options and can be used as part of the IN clause. assignee IN ($assignee)

After creating a variable it can be used in your Jira queries by using this syntax.

For more information on variables to refer this.

Import a dashboard for Jira

Follow these instructions for importing a dashboard.

Imported dashboards can be found in Configuration > Data Sources > select your Jira data source > select the Dashboards tab to see available pre-made dashboards.

Macros

Macros are variables that reference the Dashboard time window so you can filter issues only within the range of the Dashboard window.

There are 2 macros: $__timeFrom and $__timeTo.

Example: JQL to filter issues created within the Dashboard time window.

createdDate >= $__timeFrom AND createdDate <= $__timeTo

Get the most out of the plugin

Utilizing Grafana’s transformations and other built in features can help you meaningly view your Jira data.

Transformations to augment JQL

While there are many Transformations in Grafana to choose from, the following provide a powerful augmentation to give JQL some of the features/power of SQL. For more information on types of transformations refer this.

Group By This transformation provides a key feature that is not part of the standard Jira JQL syntax: Grouping. Using the Group By transformation, you can group by Sprints or other Issue fields, and aggregate by group to get metrics like velocity and story point estimates vs actual completed in a Sprint.

Outer Join Similar to SQL joins, you can join 2 or more queries together by common fields. This provides a way to combine datasets from queries and use other transformations to calculate values from multiple queries/datasets.

Add Field from Calculation Similar to SQL expressions, this transformation allows adding new fields to your dataset based on calculations of other fields. The fields used in the calculation can be from a single query or from queries you’ve joined together. You can also chain together calculations and perform calculations from calculated fields.

Using Transformations from Grafana to answer common questions

Now that you can perform basic Jira queries to find Issues, you can use Transformations to visualize, aggregate, group, and join datasets, along with many other types of transformations to transform simple results into answers for complex questions.

Question: How do I show Velocity per Sprint?

  1. Select Fields: Sprint Name, Story point estimate
  2. Add JQL Filter project = "Your Project" AND type != epic AND status = done order by created ASC
  3. Add Group By Transformation
    • Sprint Name | Group By
    • Story Point Estimate | Calculate | Total
  4. Select the Bar Gauge Visualization

Question: How do I show what was Completed vs Estimated in a Sprint?

  1. Add a Query
    • Select Fields: Sprint Name, Sprint Start Date, Story point estimate
    • Add JQL Filter: project = 'Your Project' AND type != epic
  2. Add a second Query
    • Select Fields: Sprint Name, Sprint Start Date, Story point estimate
    • Add JQL Filter: project = 'Your Project' AND type != epic AND status = done
  3. Add Group By Transformation
    • Sprint Name | Group By
    • Sprint Start Date | Group By
    • Story point estimate | Calculate | Total
  4. Select Graph visualization

Question: What is the Average time to complete issues in my project?

  1. Add a Query
    • Select Fields: Created, Status Category Changed
    • Add JQL Filter: project = 'Your Project' AND type != epic AND status = done
  2. Add Transformation: Add field from calculation
    • Mode = Reduce Row
    • Calculation = Difference
  3. Add Transformation: Add field from calculation
    • Mode = Binary Operation
    • Operation = Difference / 86000000 (1000 * 3600 * 24 to get days
    • Alias = Days
  4. Add Transformation: Organize fields
    • Hide Difference field
  5. Add Transformation: Filter data by values
    • Filter Type = Include
    • Conditions = Match any
      • Field = Days | Match = Is Greater | Value = 1
  6. Add Transformation: Reduce
    • Mode = Series to Rows
    • Calculations = mean
  7. Select Visualization: Stat