We're moving our organization's defect log to be 100% managed in Jira. Currently, there are a few labels that are used to identify the bug's type (call this label type A) and environment (call this label type B).
I want to show a widget (or widgets) that only display counts of Label Type A and/or Label Type B.
Example:
Label Type A Count:
Type 1 4
Type 2 5
Type 3 1
Label Type B Count:
Environment 1 6
Environment 2 2
Environment 3 2
Currently, it will show up like this:
Type 1 4
Environment 2 2
Environment 3 5
[Random other label] 6
...
Anyone know how to solve this??
Hi @ajonesduffey ,
With single label field you will not be able get the report for your requirement. As best you can create two custom field with labels type called Bug Type and Environment. Use these custom fields instead of labels and you can use two dimensional filter statistics gadget to know the data.
Please find below dashboard screen for your reference.
Alternatively if you know what are the labels values for Bug type and environment, then you can use below JQL filter and same can be used in two dimensional filter statistics gadget. It will requires more editing if user adds new value to label.
project = "Test New" AND issuetype = Bug AND labels in (ABC, XYZ, LMN)
project = "Test New" AND issuetype = Bug AND labels in (test, prod, dev)
Thanks,
Avinash
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.