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.

DocumentationPluginsJira data sourceJira templates and variables

Jira templates and variables

Instead of hard-coding details such as server, application, and sensor names in metric queries, you can use variables. Grafana lists these variables in dropdown select boxes at the top of the dashboard to help you change the data displayed in your dashboard. Grafana refers to such variables as template variables.

For an introduction to templates and variables, see the following topics:

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

Multi-value variables allow selecting multiple options and can be used as part of the IN clause:

assignee IN ($assignee)

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: $__from and $__to.

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

createdDate >= $__from AND createdDate <= $__to