作为我们项目的一部分,我们希望将 JIRA 中可用的信息捕获到我们的数据库中”
As part of our project we want to capture the information available in JIRA for our sprint into a databse"
作为我们新项目的一部分,我们正在尝试使用 tableau.The 报告来构建报告,报告根据 requirement.Currently 提供冲刺的信息,我们正在手动更新报告的数据源。
"Is there a way through which i can access the JIRA information for a sprint and store it in a database so that i can abolish the manual updates".
是的,由于 Jira 的流行,您可以使用适用于绝大多数编程语言的 Jira API 来完成此任务。
我个人建议使用 jira-python api,因为可以在此处找到大量文档:https://jira.readthedocs.io/en/master/api.html#jira。
然后您只需调用 sprints(...)
或 sprints_by_name(...)
,然后遍历结果并将相关信息打印到您的数据库中。
作为我们新项目的一部分,我们正在尝试使用 tableau.The 报告来构建报告,报告根据 requirement.Currently 提供冲刺的信息,我们正在手动更新报告的数据源。 "Is there a way through which i can access the JIRA information for a sprint and store it in a database so that i can abolish the manual updates".
是的,由于 Jira 的流行,您可以使用适用于绝大多数编程语言的 Jira API 来完成此任务。
我个人建议使用 jira-python api,因为可以在此处找到大量文档:https://jira.readthedocs.io/en/master/api.html#jira。
然后您只需调用 sprints(...)
或 sprints_by_name(...)
,然后遍历结果并将相关信息打印到您的数据库中。