Need to find the committed points (of the stories) at the time of sprint start. Not on the same date, because there could be stories added to the sprint later. But I need to find the points of all the issues when we hit Start Sprint. Checked many questions in the forum's but could not find the correct answer. Could someone from the community help?
I need to find this in PostGreSQL.
Hello @Satya Ramesh
Welcome to the Atlassian community!
Trying to get the committed points for a sprint at a date after the sprint has started is extremely difficult with native functionality. The issues in the sprint may have had changes to their story point values, and issues may have been removed or added. You would have to sort through history to find out if the story points had been changed and if issues where added/removed.
In my opinion, the best way to get that information is to use Automation for Jira and create a rule triggered by Sprint Started. When that rule is triggered, add steps to retrieve the issues currently in the sprint, sum up the points, and record that information by sending it in an email or posting it to a Confluence page.
There may be third party applications that you could add to your Jira instance that could get the information for you. You can look on the Atlassian Marketplace for such apps.
I can not give you a more appropriate answer to that, Trudi has it exactly right.
The reason I am commenting is that I am not sure that "committed points" is the right thing to look at. Without knowing your processes, I default to off-the-shelf Scrum, where "committed points" will mean "the sum of the SP we committed to doing in this sprint". Adding or removing issues from the list, or amending their estimates after starting the sprint simply means the scope has changed, and you will need to think about it in the retro.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi all, thank you for your quick response in helping me out.
Actually the requirement is to fetch the data from PostgreSQL and prepare a report and send it to the concerned people. I do not have control over the Jira.
Is there anyway we can fetch all the committed points when the sprint started from PostgreSQL?
For example, when the sprint started if there were 20 issues assigned to the sprint, I need to fetch committed points only for those issues. Any issues added to the sprint later can be ignored.
Is there anyway to find it out in PostGreSQL?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are open to 3rd party solutions this is something that we provide visibility into with minware. We provide plug and play software engineering metrics linked to ticketing, code sources and calendar data.
Our Sprint Insights summary provides a full view of how story points flow throughout a sprint.
Disclaimer: Marketplace partner
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, but it is not the right way to do it, the best thing you can do is create a REST API call that simply calls "opensprints()"
If you try to do this in SQL, you're going to need to have to think about the current sprint, how the issues in it are identified within it, and how to read the story points from them. There's 6 joins in there and that's just minimum you need!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nic, thanks for your response.
May I know the 6 tables that needs to be joined?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I do not want to tell you, because I really want you to stop trying to do this the wrong way. Please, use the API, stop looking at the database.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you please share the REST API Sample for "opensprints()"?
So, If we consider as "opensprints()", It will take all the issues in current sprint...?
I need only committed points (of the issues) at the time of sprint start(sprint start date), Is it possible..?
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.