Is there a way to find, via the integrated search, JIRA issues that have not been updated for more than a certain number of days... in order to solve/delete them.
Thanks
In JQL can you try to use a filter like this :
updated > "-1d"
for tickets updated last day ?
you can use JQL as described by #Guillaume
however if you want to solve them and then delete them, usually it is best to run a bulk update and add a tag, because after the first bulk update to solve them the JQL will not be valid anymore.
This is assuming that you want to solve first and then delete obviously
Related
I have got the below ORDER BY JQL script added to my boards. For some reason though the issues are not re-ordering. Is there something that I am missing?
ORDER BY updatedDate desc
JIRA boards can be set to sort by "Rank", which will override and remove any other ranking; see Enabling Ranking and Ranking an Issue. If that's not set, ORDER BY works for me in JIRA Cloud.
I´m trying to create a gadget for the Jira Dashboard that´s quite hard to accomplish.
I need to show a list of epics with time budget and the sum of time spent as columns.
The problem I´m facing is that the time logged is not made in the epics, but in the tasks or issues inside the epic (as I think it should be) and the column on "sum of time spent" is always empty.
This means, as I see it, that I have to be able to sum up the issues inside every epic and somehow show it in the empty column of the epic I need to see.
I created a filter and I´m calling it with the "filter results" jira dashboard gadget.
I tried with the Script Runner plugin and read the API it has, but still no idea how can that be done.
Is there any idea?
Thanks in advance for any advice.
I have looked for something exactly like this recently, and am surprised that JIRA doesn't have a way to do this out of the box.
Checkout Epic Sum Up. https://marketplace.atlassian.com/plugins/aptis.plugins.epicSumUp/cloud/overview It will solve the Time Budget question, but I don't know about a Time Logged solution.
See:
https://confluence.aptis.info/display/ESU/Time+Field
"How to search a Time Field by using JQL"
You might also find some useful features in the Tempo Addon.
https://tempoplugin.jira.com/wiki/display/TEMPO/Tempo%20Timesheets%20Documentation
Since you're looking to display something on a dashboard look under the Users Guide: Tempo gadgets area.
this works with the Plugin Timesheet
https://marketplace.atlassian.com/apps/294/timesheet-reports-and-gadgets?hosting=cloud&tab=overview
1) Add the Gadget to a JIRA-Dashboard
2) Edit the Gadget appropiately
but care that you
Group by: Epic Name
and choose for
Additional Fields: Original Estimate and Remaining Estimate
Consider to set Show Details: to No
This will look something like this:
(Remaining Estimate are the numbers Right from the Original Estimate-column )
There are 1200 issue in my db. I want to filter who changed the status of the issue from Resolved to Close. How can I filter this using JQL?
JQL just allows you to look for "Issues" not for people. So if you need to find users that made any action, you should try with a script.
Regards
I'm trying to use JQL to measure cycle times (the Control Chart has other issues), so I need to get the date that an issue changed status. I see that one can use the CHANGED keyword to filter issues that have changed status on certain dates, but I see no way to actually list the date of the change as a column.
Any ideas? How would you guys address this lack of visibility into cycle time data?
There is no simple solution available in JIRA at the moment. See the issue https://jira.atlassian.com/browse/JRA-12825 for the whole discussion. The argumentation of Atlassian is the following:
There exists a product Service Desk that implements the SLA feature expressed here.
There are reports and additional plugins available that give similar information to this. See the JIRA Suite Utilities which give you a UI for each issue to see the transition summary.
JQL (JIRA Query Language) was intended to select all issues that match a query, not to select special information to these issues. You have to use the configuration of the table, if it is included there as a field of the issue (which it is not).
In addition to the suggestions from mliebelt there is another at https://answers.atlassian.com/questions/128370/how-to-capture-date-of-state-change-in-jira. It requires JIRA Misc Workflow Extenstions and uses the "Copy value from field to field" function to capture the transition date in a custom field.
There is a plugin in Atlassian Marketplace called Time in Status just for that purpose. The plugin prepares a report on how much time each issue spent on each status or assignee.
Time in status is useless if need to count of Jiras that changed status on that day. Time in status widgets is useless for this
After much searching on the web I can't seem to find this option.
If I forgot to update my Work Items Remaining/Completed Work how can I amend it for a previous date?
By forgetting; the Burndown chart looks wrong. Although I appreciate that I can update the values on a date following the date I forgot but this still makes the Burndown chart look funny and also means I can't record the work done retrospectively.
Could possibly the TFS Power Tools help here?
I don't know of any powertool that does this, however the field for past revisions are read only when using the Client API, so it's very unlikely that a tool exists.
About your only option is to go straight to the database, probably the WorkItemsWere table, which isn't usually a fun experience.