Step-by-Step Guide: Creating a Jira Kanban Dashboard with KPIs & Widgets

Jira software

This guide will walk you through setting up a custom Kanban dashboard in Jira with real-time KPIs (Cycle Time, Throughput, Assignee Workload, Bug Metrics, and more).

Table of Contents

Let’s do it

Final Dashboard Layout Example.

Advanced JQL Queries for Custom Kanban Dashboard Filters in Jira.

Implementation Tips.

Pro Tip: Dynamic Date Ranges.

Advanced Jira Dashboard Configuration Package.

Troubleshooting Tips.

Conclusion.

Let’s do it

Step 1: Create a New Dashboard

  1. Go to Dashboards → Click “Create Dashboard”.
  2. Enter a Name (e.g., “Software Dev Kanban Dashboard”).
  3. Set Permissions (Team-managed/Company-managed).
  4. Click “Create”.

Step 2: Add Essential Widgets for KPIs

📊 1. Cumulative Flow Diagram (CFD) – Bottleneck Analysis

  • Purpose: Visualizes work distribution across columns.
  • Steps:
    1. Click “Add Widget” → Search for “Cumulative Flow Diagram”.
    2. Select your Kanban Board.
    3. Set Date Range (Last 30 days).
    4. Click “Save”.

⏳ 2. Control Chart – Cycle Time Tracking

  • Purpose: Measures how long tasks stay in each column.
  • Steps:
    1. Click “Add Widget” → Search for “Control Chart”.
    2. Choose your Kanban Board.
    3. Set Filters (e.g., issuetype = Task).
    4. Click “Save”.

🚀 3. Throughput Report – Tasks Completed Per Day

  • Purpose: Tracks work completion rate.
  • Steps:
    1. Install “ActionableAgile” (if not available).
    2. Click “Add Widget” → Search for “Throughput Chart”.
    3. Select Board and Timeframe (Last Sprint/Last Month).
    4. Click “Save”.

👥 4. User Workload Pie Chart – Assignee Distribution

  • Purpose: Shows task allocation per team member.
  • Steps:
    1. Click “Add Widget” → Search for “Pie Chart”.
    2. Set Filter (status != Done AND assignee is not empty).
    3. Group by “Assignee”.
    4. Click “Save”.

🐞 5. Created vs. Resolved Bugs – Defect Tracking

  • Purpose: Measures bug resolution efficiency.
  • Steps:
    1. Click “Add Widget” → Search for “Created vs. Resolved”.
    2. Set Filter (issuetype = Bug).
    3. Choose Time Period (Last 14 days).
    4. Click “Save”.

📅 6. Sprint Burndown (For Scrum Teams)

  • Purpose: Tracks remaining work in a sprint.
  • Steps:
    1. Click “Add Widget” → Search for “Sprint Burndown”.
    2. Select your Active Sprint.
    3. Click “Save”.
Jira software

Step 3: Configure WIP Limits (Work in Progress)

  1. Go to Board Settings → Columns.
  2. Set Maximum WIP Limits per column (e.g., “In Progress = 5”).
  3. Click “Save”.

Step 4: Enable Time-in-Status Tracking

  1. Go to Board Settings → Columns.
  2. Enable “Time in Status” for each column.
  3. Click “Save”.

Step 5: Automate Alerts for Blocked Issues

  1. Go to Project Settings → Automation.
  2. Create a New Rule:
    • Trigger: Issue moved to “Blocked”.
    • Action: Notify assignee + Scrum Master.
  3. Click “Save”.

Final Dashboard Layout Example

SectionWidgets
Workflow HealthCumulative Flow, Control Chart
Team PerformanceUser Workload, Throughput
Quality MetricsCreated vs. Resolved Bugs
Sprint TrackingBurndown, Sprint Goal Progress

Advanced JQL Queries for Custom Kanban Dashboard Filters in Jira

Here’s a comprehensive collection of powerful JQL (Jira Query Language) queries to create custom filters for your Kanban dashboard. These will help you track critical metrics, bottlenecks, and team performance with precision.

1. Cycle Time & Lead Time Analysis

Tasks Taking Longer Than Average

project = “YOUR_PROJECT” AND issuetype in (Bug, Task, Story)

AND status changed FROM “In Progress” TO “Done” AFTER -30d

AND (updated – created) > (SELECT avg(updated – created) FROM jiraissue WHERE project = “YOUR_PROJECT” AND status = Done)

ORDER BY updated – created DESC

Items Stuck in a Column Too Long

project = “YOUR_PROJECT” AND status = “In Progress”

AND status changed to “In Progress” BEFORE -5d

ORDER BY updated ASC

Jira software

2. Workload & Resource Allocation

Overloaded Team Members

assignee in membersOf(“dev-team”)

AND status not in (Done, Closed)

GROUP BY assignee

ORDER BY count() DESC

Unassigned High-Priority Tickets

project = “YOUR_PROJECT” AND assignee is EMPTY

AND priority in (High, Highest)

AND status not in (Done, Closed)

ORDER BY created DESC

3. Quality & Bug Tracking

Bugs Escaped to Production

issuetype = Bug

AND status was “Done” AFTER startOfMonth(-1)

AND status changed FROM “Done” TO (“Reopened”, “In Progress”)

ORDER BY updated DESC

Slow Bug Resolution (Older Than 7 Days)

issuetype = Bug

AND status not in (Done, Closed)

AND created < -7d

ORDER BY created ASC

4. Bottleneck Identification

Tasks Blocked for More Than 2 Days

status = “Blocked”

AND status changed to “Blocked” BEFORE -2d

ORDER BY updated ASC

Review Backlog (Code Review > 3 Days)

status = “Code Review”

AND status changed to “Code Review” BEFORE -3d

ORDER BY updated ASC

5. Sprint & Release Metrics

Unfinished Sprint Work (Past Due)

sprint in openSprints()

AND status not in (Done, Closed)

AND due < now()

ORDER BY due ASC

Completed Work vs Committed (Sprint Health)

sprint in openSprints()

AND (status changed to Done DURING sprintDates())

OR (status not in (Done, Closed) AND sprint in openSprints())

6. Specialized Technical Debt Queries

Quick Wins (Small Effort, High Impact)

“Technical Debt” is not EMPTY

AND priority = Highest

AND storyPoints <= 3

ORDER BY priority DESC, storyPoints ASC

Untriaged Technical Debt

labels = “tech-debt”

AND “Technical Debt Level” is EMPTY

ORDER BY created DESC

7. Advanced Time Tracking Queries

Tasks With Poor Time Estimates

timeSpent > (originalEstimate * 1.5)

AND status = Done

ORDER BY (timeSpent – originalEstimate) DESC

Time Spent in Each Status

project = “YOUR_PROJECT”

AND issueFunction in statusHistory(“status was ‘In Progress’ for more than ‘5d'”)

ORDER BY updated DESC

8. Cross-Project Dependency Tracking

Blocked by External Teams

issue in linkedIssues(“is blocked by”)

AND project != “YOUR_PROJECT”

AND status not in (Done, Closed)

ORDER BY priority DESC

Critical Path Items

issue in linkedIssues(“is required by”, “blocks”)

AND status not in (Done, Closed)

AND priority = Highest

ORDER BY rank ASC

Jira software

Implementation Tips

  1. Save Each Query as a Filter:
    • Click “Save As” after testing each query
    • Name them clearly (e.g., “Bugs Older Than 7 Days”)
  2. Add to Dashboard:
    • Use “Filter Results” widget
    • Configure columns to show key fields (Assignee, Status, Last Updated)
  3. Combine with Gadgets:
    • Use “Two-Dimensional Filter Statistics” for matrix reports
    • Add “Calendar” gadget for deadline tracking
  4. Automate with Dashboards:
    • Create separate tabs for Dev/QA/Management views
    • Set automatic refresh intervals

Pro Tip: Dynamic Date Ranges

Use Jira’s date macros for flexible reporting:

created >= startOfWeek() AND created <= endOfWeek()  // Current week

updated >= startOfMonth(-1) AND updated <= endOfMonth(-1)  // Last month

Advanced Jira Dashboard Configuration Package

Here’s a complete package including JSON configurations for dashboards, automation rules, and gadget setups to complement the JQL queries I provided earlier. This has javascript code and other stuff.

1. Dashboard JSON Template

{

  “name”: “Advanced Kanban Analytics”,

  “description”: “Comprehensive project tracking with cycle time, bottlenecks, and team workload”,

  “gadgets”: [

    {

      “type”: “com.atlassian.jira.gadgets:two-dimensional-stats-gadget”,

      “title”: “Cycle Time Analysis”,

      “config”: {

        “filterId”: “12345”, // Replace with your saved Cycle Time filter ID

        “columns”: [“Status”],

        “rows”: [“Priority”],

        “statsType”: “average”,

        “statField”: “time_in_status”

      }

    },

    {

      “type”: “com.atlassian.jira.gadgets:filter-results-gadget”,

      “title”: “Blocked Items > 2 Days”,

      “config”: {

        “filterId”: “67890”, // Replace with your Blocked Items filter ID

        “columns”: [“Key”, “Summary”, “Assignee”, “Created”, “Updated”],

        “refresh”: “15”

      }

    },

    {

      “type”: “com.atlassian.jira.gadgets:pie-chart-gadget”,

      “title”: “Workload Distribution”,

      “config”: {

        “filterId”: “54321”, // Replace with Workload filter ID

        “statType”: “count”,

        “groupByField”: “assignee”

      }

    }

  ],

  “layout”: {

    “type”: “custom”,

    “sections”: [

      {

        “column”: 1,

        “gadgets”: [

          {“index”: 0, “height”: 2},

          {“index”: 1, “height”: 2}

        ]

      },

      {

        “column”: 2,

        “gadgets”: [

          {“index”: 2, “height”: 2}

        ]

      }

    ]

  }

}

2. Automation Rules (JSON Exportable Format)

Rule 1: Escalation for Blocked Items

{

  “name”: “Escalate Long-Blocked Items”,

  “description”: “Notify managers when items are blocked >2 days”,

  “trigger”: {

    “type”: “FIELD_VALUE”,

    “field”: “status”,

    “matcher”: {

      “type”: “EQUALS”,

      “value”: “Blocked”

    }

  },

  “conditions”: [

    {

      “type”: “FIELD_CONDITION”,

      “field”: “status”,

      “matcher”: {

        “type”: “CHANGED_TO”,

        “value”: “Blocked”,

        “timeUnit”: “days”,

        “number”: 2

      }

    }

  ],

  “actions”: [

    {

      “type”: “NOTIFY”,

      “recipients”: {

        “type”: “USER”,

        “value”: “project-manager@company.com”

      },

      “template”: “The issue {{issue.key}} has been blocked for more than 2 days. Current assignee: {{issue.assignee}}”

    }

  ]

}

Rule 2: WIP Limit Enforcement

{

  “name”: “Enforce WIP Limits”,

  “trigger”: {

    “type”: “ISSUE_TRANSITION”,

    “fromStatus”: “Backlog”,

    “toStatus”: “In Progress”

  },

  “conditions”: [

    {

      “type”: “JQL_CONDITION”,

      “query”: “status = ‘In Progress’ AND assignee = {{issue.assignee}}”

    },

    {

      “type”: “COMPARE”,

      “valueProvider”: {

        “type”: “JQL_FUNCTION”,

        “function”: “count”,

        “query”: “status = ‘In Progress’ AND assignee = {{issue.assignee}}”

      },

      “matcher”: {

        “type”: “GREATER_THAN_EQUALS”,

        “value”: 3

      }

    }

  ],

  “actions”: [

    {

      “type”: “TRANSITION”,

      “targetStatus”: “Backlog”

    },

    {

      “type”: “COMMENT”,

      “comment”: “WIP limit reached (3 items). This item was moved back to Backlog.”

    }

  ]

}

3. Custom Gadget Configuration

Cycle Time Control Chart (Advanced)

// For scripted fields or custom gadgets

(function() {

  var issues = require(‘issues’); // Jira REST API wrapper

  var currentUser = require(‘user’).currentUser();

  return {

    title: “Personal Cycle Time Analysis”,

    data: function() {

      return issues.search(

        ‘assignee = currentUser() AND status changed to Done AFTER startOfWeek()’,

        [‘key’, ‘summary’, ‘time_in_status’]

      ).then(function(results) {

        return {

          series: results.issues.map(function(issue) {

            return {

              name: issue.key,

              data: [parseInt(issue.fields.time_in_status / 3600)] // Convert seconds to hours

            };

          })

        };

      });

    },

    template: {

      type: ‘bar’,

      options: {

        yAxis: {

          title: { text: ‘Hours in Progress’ }

        }

      }

    }

  };

})();

4. Dynamic Filter Parameters

URL Template for Dashboard Links

&status=open

&priority=high,highest

&created=-7d

&customfield_12345=tech-debt

5. Implementation Checklist

  1. Import Dashboard JSON
    • Go to Dashboards → Manage Dashboards → Import
    • Paste the JSON and adjust filter IDs
  2. Set Up Automation Rules
    • Navigate to Project Settings → Automation
    • Create new rule → “Import from JSON”
  3. Configure Permissions
    • Share dashboard with appropriate groups
    • Set gadget-level permissions if needed
  4. Schedule Daily Digest
    • Add “Dashboard Email” gadget
    • Configure to send at 8:00 AM daily

Troubleshooting Tips

If gadgets don’t load:

  1. Check filter permissions are shared with viewers
  2. Verify all referenced custom fields exist
  3. Ensure JQL queries return results in your project

For the custom script gadget:

  1. Requires ScriptRunner for Jira
  2. Test in “Script Console” first
  3. Adjust API rate limits if needed

Conclusion

Your Jira Kanban Dashboard is now ready with:
✔ Cycle Time & Bottleneck Analysis (CFD, Control Chart)
✔ Team Workload & Efficiency (Throughput, Assignee Pie Chart)
✔ Bug & Quality Tracking (Created vs. Resolved)
✔ Automated Alerts for Blockers

Curated Reads

Dhakate Rahul

Dhakate Rahul

Leave a Reply