Skip to main content
Version: Next

Jira

Summary

This plugin collects Jira data through Jira REST API. It then computes and visualizes various engineering metrics from the Jira data.

Supported Versions

Available for Jira Cloud, Sever/Data Center 7.x, 8.x. Check this doc for more details.

Entities

Check out the Jira entities collected by this plugin.

Data Refresh Policy

Check out the data refresh policy of this plugin.

Metrics

Metrics that can be calculated based on the data collected from Jira:

Configuration

API Sample Request

You can trigger data collection by making a POST request to /pipelines.

curl 'http://localhost:8080/pipelines' \
--header 'Content-Type: application/json' \
--data-raw '
{
"name": "MY PIPELINE",
"plan": [
[
{
"plugin": "jira",
"options": {
"connectionId": 1,
"boardId": 8,
"transformationRules": {
"epicKeyField": "",
"storyPointField": "",
"remotelinkCommitShaPattern": "",
"typeMappings": {
"10040": {
"standardType": "Incident",
"statusMappings": null
}
}
}
}
}
]
]
}
'