在JIRA(Greenhopper)中如何直接访问greenhopper存储的数据来计算速度?

发布于 2024-11-26 10:40:53 字数 209 浏览 6 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

所有深爱都是秘密 2024-12-03 10:40:53

我终于解决了!

以下是我们用来从 Jira 访问数据的一些技术。

SQL

例如,此 SQL 语句针对每个优先级对 Jira 中每个点的所有问题进行计数。

SELECT 
    project.ID AS id,
    project.pkey,
    project.pname AS projectname,
    jiraissue.PRIORITY AS priority,
    COUNT(*) AS total 
FROM jiraissue 
LEFT JOIN project ON jiraissue.PROJECT=project.ID 
GROUP BY project.ID,jiraissue.PRIORITY
ORDER BY project.id

另请查看... 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.

SELECT 
    project.ID AS id,
    project.pkey,
    project.pname AS projectname,
    jiraissue.PRIORITY AS priority,
    COUNT(*) AS total 
FROM jiraissue 
LEFT JOIN project ON jiraissue.PROJECT=project.ID 
GROUP BY project.ID,jiraissue.PRIORITY
ORDER BY project.id

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/

谁的年少不轻狂 2024-12-03 10:40:53

我使用旧版本的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文