在JIRA(Greenhopper)中如何直接访问greenhopper存储的数据来计算速度?
我正在尝试使用 SQL、REST 或 Jira Api 来了解项目在当前任何时刻的速度。现在,我正在尝试查找为每个冲刺和版本分配/完成的故事点总数,并据此计算整个项目的速度。
问题是 Greenhopper 是 Jira 的插件,并且不会以任何方式更改 Jira 数据库,因此它必须将有关 scrum/敏捷项目的信息存储在其他地方。有什么想法可以找到这些信息吗?
谢谢你!
I'm trying to use SQL, REST or the Jira Api to find out what the velocity of a project is at any current moment in time. Right now I am trying to find the total number of story points assigned/completed for each sprint and version and from this calculate the velocity of the overall project.
The problem is that Greenhopper is an addon to Jira and does not change the Jira database in anyway, so it must store this information about scrum/agile projects elsewhere. Any ideas where this information might be located?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我终于解决了!
以下是我们用来从 Jira 访问数据的一些技术。
SQL
例如,此 SQL 语句针对每个优先级对 Jira 中每个点的所有问题进行计数。
另请查看... http://confluence.atlassian.com /display/JIRA041/Example+SQL+queries+for+JIRA
REST Api
我没有正确尝试过,但还有一组 REST api,您可以使用它来访问某些数据来自吉拉。该文档可在此处获取:http://docs.atlassian.com/jira/REST/latest/
示例链接:https://JIRA_LINK/rest/auth/1/session
Java
还有另一个JIRA Java api 的有用链接: http://docs.atlassian.com/software /jira/docs/api/latest/
I finally worked it out!
So here is some of the techniques that we use to access data from Jira.
SQL
This SQL statement for example counts all the issues from every point in Jira for each priority.
Also check out... http://confluence.atlassian.com/display/JIRA041/Example+SQL+queries+for+JIRA
REST Api
I have not tried this properly but there is also a set of REST api that you can use to access some of the data from Jira. This documentation is available here: http://docs.atlassian.com/jira/REST/latest/
An example link: https://JIRA_LINK/rest/auth/1/session
Java
Also another useful link for JIRA Java api: http://docs.atlassian.com/software/jira/docs/api/latest/
我使用旧版本的 jira & greenhopper ....但在该版本中,greenhopper 允许您选择“烧毁”的领域。就我而言,它是一个名为“可能”的字段(我相信是自定义字段)。所以它应该存在于 DB/API 的某个地方。祝你好运。
I use an older version of jira & greenhopper.... but in that version, greenhopper allows you to choose the field you "burndown" by. In my case it's a field (i believe a custom field) called "Likely". So it should be there in the DB/API somewhere. good luck.