Hi ,
One of the user wants to quantify the number of tickets updated by his team members filtered by project to monitor workloads.
Also user mentioned :
For our purposes any field being changed on a ticket would count as an update; so updating status, reassigning, adding comments etc would all count as an update, but if multiple fields are updated at once this will need to count as a single update.
Please can I have some assistance, and if there is any way to implement such functionality ?
Thanks.
Hi @Priyanka Nimbalkar ,
I am not sure if this works but my cents . You can use JQL as below .
project = "your project name" AND updatedDate < now() AND assignee in (your team name or list of assignees) ORDER BY status DESC, Rank ASC
Let me know if this works for you ..
It should do.
For what it's worth "updated" or "updateddate" works exactly as requested. Jira records all change to an issue, it does each change as a single history item, and the updated date is set to the date of that change. So, for example, if you transition something and change the resolution and a custom field in the screen, there's one single update logged (with a group of detail about what changed)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @lakshmi_priya for suggestion, I believe this will work fine for sorting tickets based on JQL.
Update from user is somewhat different :
we've got a couple of memebers of our team where we're trying to build some metric analysis, but they don't create, or retain tickets for very long so looking at how many tickets they have assined at any one point isn't an effective way of monitoring their workload, so we want to see how many tickets they've updated over the course of a day/week/month.
So this clears that user wants a way where he can analyse the updates of the tickets from various team members who might be working on different projects !
Is there any functionality in jira to show the number of updates made on tickets ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok .. got your point ..
Did you try out logging work logs instead of just commenting and we can filter out worklogAuthor even if the assignee is different .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi ,
I never actually tried this way, could you please elaborate your use case or provide me with any documentation for the same that would guide me better as i dont wanna take any risk on Production Jira in the rush for trying out new solutions.hope that make sense :) .
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
issue in issueHistory() and assignee in membersOf("") or reporter in membersOf("") or status was open or status = Open and sprint in openSprints()
Create a group with the required Team members , and place the group in MembersOf("Groupname")
Which will used to know if any change is happened to ticket by Assignee , or reporter in current sprint
we can use above information for gadgets.
let me know if it suitable
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi @Priyanka Nimbalkar ,
So He want to track the Change log also, i mean he want to view the history also. recently we have same kind of requirement also.
We tried the following plugin
Please check this
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.