I am looking for examples of known useful dashboards and filters that will help visualize Agile team metrics.
What are common metrics that most Agile teams want to be able to review:
And from a project level:
Does anyone have examples of filters to use, or even better, an example of a dashboard that is useful? Thanks.
Hello @Sha Melo , this should help 7 steps to a beautiful and useful agile dashboard
Here are some filters which might help,
- Issues completed in specific sprint
project = projectname AND status in (Resolved, Closed) AND Sprint = sprintno
- Issues missing storypoints
project = projectname AND resolution = Unresolved AND Sprint in openSprints() AND "Story Points" is EMPTY AND type in (Story)
- Active Sprint In Progress Longer than 6 Days
project = projectname AND resolution = Unresolved AND Sprint in openSprints() AND status = "In Progress" AND status changed to "In Progress" before -6d AND issuetype not in (Epic) ORDER BY updatedDate ASC
- Issues in progress and missing due dates
project = projectname AND resolution = Unresolved AND Sprint in openSprints() AND duedate is EMPTY AND Status not in (Open)
- Total number of scheduled issues (based on assignee - pie chart)
project = projectname AND resolution = Unresolved AND Sprint in openSprints()
- Upcoming or missing duedate
project = projectname AND resolution = Unresolved AND Sprint in openSprints() AND duedate <= 5d
-Future sprint unassigned
project = projectname AND resolution = Unresolved AND Sprint in futureSprints() AND assignee is EMPTY
- All issues open sprint
project = projectname AND Sprint in openSprints()
You can make the adjustments as you like depending upon your requirements, also go see to understand Advanced searching in jira Cloud
Your welcome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.