Reporting Jira Data Provider macro allows reading of Jira issue data from the specified Jira instance. The issues are searched by specified JQL query. The max number of issues may be specified, but cannot be higher than 1000 items. Data providers in Reporting return data in a form of an array of JSON objects - one JSON object per each report line. Then, in Reporting Table Item formulas these objects may be accessed via CurrentItem variable.
Reporting Jira Data Provider macro has the following parameters:
Parameter | Description |
---|---|
[String] Source (default=''(Empty value)) |
An Application Link name (for Server/Datacenter) or URL (for Cloud) of the Jira instance to read data from. Examples:
|
[String] Query (default=''(Empty value)) |
A JQL query to be used to search for Jira issues. This parameter cannot be empty. Examples:
|
[String] Fields (default=''(Empty value)) |
A list of fields to return for each issue, use it to retrieve a subset of fields. This parameter accepts a comma-separated list. Examples:
|
[String] Filter (default=''(Empty value)) |
The formula, which filters out the values when it returns False. Ignored if empty. Examples:
|
[Long] Max results (default=1000) | The maximum amount of issues to be returned. This feature is convenient to create the lists of TOP Something, when the issues are sorted in JQL query and the amount is limited with this parameter. |