Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Bug history

Matt MacNichol
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 1, 2018

I would like to query the history of a bug/issue ID to determine where the bottleneck is

I need to see Created, Deployed & Closed dates for each bug/issue ID.  When I utilize the basic filters I am not able to retrieve all the required statuses 

I would like to see how many days from the time a bug is created to the time the vendor deploys a fix.  Then, how many days it takes our team takes to close from the deployed date

3 answers

3 votes
Tim Reiking
Contributor
September 13, 2018

Hi Matt,

I'm a developer/consultant at cPrime that works with our Power Apps. One of our apps (Power Custom Fields Premium) would be great to help you solve this issue. 

Once installed you could create a new custom field of type SIL Script Custom Field. The field will then execute a script each time the ticket is loaded to display desired information. The script is added to the field's configuration and written cPrime's Simple Issue Language (SIL)

For example I have written a quick example script for a field called Time to Resolve:

interval diff = resolutionDate - created;
return diff;

This code will get the created date and the resolution date from the current ticket and display the difference between them using a SIL interval object.

Example return value: 2d 13h 43m

The result will be displayed in both the search results view and the ticket view:

filterView.pngticketView.png

 

If you have a date that comes from a custom field, you can refer to that field using the following syntax:

interval diff = customfield_11000 - created;
return diff;

For more information on getting ticket values, see Variable Resolution

I hope that this helps you. Please reach out if you need any additional information.

Thanks,
Tim

0 votes
Lime Trees
Contributor
August 3, 2018

Hi,

you can have a look at our Status History add-on where you can check all status and user changes - more details here.

If you need to analyze the data, Status History PRO and its viewer will be a great help.

Regards,

Lime Trees Support Team

0 votes
Ollie Guan
Community Champion
August 1, 2018

Hi @Matt MacNichol,

You can try some plugins to help implement this function, or you can record the operation time of each action by customizing fields of multiple date types.

e.g:https://marketplace.atlassian.com/apps/5139/enhancer-plugin-for-jira?hosting=server&tab=overview

Matt MacNichol
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 2, 2018

thanks for the help

Suggest an answer

Log in or Sign up to answer