jira

Export JIRA Data

笑着哭i 提交于 2019-12-03 12:34:00
What is the best way to export all JIRA data (projects, issues, ...)? I saw that there is an API and a plugin mechanism which probably can provide all the information. But what is the easiest way to export the data? Does it work out of the box or do I have to implement a plugin? Gupta Generally, there are two main approaches to backup your JIRA data. The first one is to back up your database in which JIRA info is stored. The second one is to use the “Backup Data to XML feature”, which is a JIRA feature. Personally, I prefer the second one, because it can be restored to any database engine

jira python oauth: how to get the parameters for authentication?

不打扰是莪最后的温柔 提交于 2019-12-03 12:18:24
问题 I am trying to use oauth to access jira, and I am reading this document: Welcome to jira-python's documentation. But in this oauth part, I cannot figure out how I can get these parameters: access_token, access_token_secret, consumer_key, key_cert 回答1: I too am using jira-python. Since jira-python uses requests and requests-oauthlib I used those same libraries to implement the OAuth 1 dance necessary to get the tokens. First, setup JIRA: Generate RSA public/private key pair (you end up with

Create JIRA sub-tasks automatically when issue created

三世轮回 提交于 2019-12-03 12:18:13
问题 I am wondering there is a way to create sub-tasks automatically when issue created. For example, I create a custom Standard Issue Type, XXX, and Sub-tasks Issue Type YYY and ZZZ. When I create a issue with type XXX, then two sub-tasks with respective issue type YYY and ZZZ will be created automatically. 回答1: You could so this easily using Jira Scripting Suite by using post function on issue creation transition on the project's workflow. Sample code: from com.atlassian.jira.util import

How to get all work logs for a period of time from the Jira REST API?

半腔热情 提交于 2019-12-03 11:29:37
I'm writing an application using PHP and the Jira REST API which is required to generate a report for a particular period of time with the accumulation of hours spent by a person on a particular project. For this I will need a call which will give something like this. e.g: For the period 01/01/2012 - 31/01/2012 give me the worklogs for project X. The method I found so far, was to get the updated issues after the start date and filter the worklogs for each issue by the period again. Is there a better alternative? If you can't find the an out-of-the-box function that does what you've asked for,

jira项目管理平台搭建

断了今生、忘了曾经 提交于 2019-12-03 11:05:49
参考文档: http://www.cnblogs.com/ilanni/p/6200875.html 一、环境准备 jira7.2的运行是需要依赖java环境的,也就是说需要安装jdk并且要是1.8以上版本 [root@linux-node1 ~]# yum install -y java [root@linux-node1 ~]# java -version openjdk version "1.8.0_141" OpenJDK Runtime Environment (build 1.8.0_141-b16) OpenJDK 64-Bit Server VM (build 25.141-b16, mixed mode) [root@linux-node1 ~]# 为jira创建数据库、用户名和密码 mysql -uroot -p'123456' -e "create database jira default character set utf8 collate utf8_bin;grant all on jira.* to 'jira@’%' identified by 'jirapasswd';" grant all on jira.* to 'jira'@localhost identified by 'jirapasswd' with grant option;

How to integrate JIRA with Selenium WebDriver?

被刻印的时光 ゝ 提交于 2019-12-03 10:17:26
问题 How can I can integrate JIRA with Selenium WebDriver? Actually I want to execute test cases and report pass/ fail status for each test cases in JIRA. 回答1: Your question is very general, so my answer will follow suit. Jira isn't exactly a TCM (Test Case Manager) application, though it's certainly possible to track tests using Jira... The point being, you'd likely be looking at a fair amount of custom code work trying to get test launch/scheduling capabilities integrated. You'd be far better

JIRA: Generating per-user time report?

a 夏天 提交于 2019-12-03 10:02:36
Sorry if SO is not the best place, but I have time-tracking enabled in JIRA and want to be able to generate a time-report for each user over a given date range. The only time-tracking report option I have is very limited and doesn't do what I want, is it possible through standard functionality or a free plugin perhaps? how about this one: https://plugins.atlassian.com/plugin/details/294 You might want to check out Tempo Plugin for JIRA timetracking . It offers timesheets, reports and gadgets on user, team, project, and customer levels. If you don't want to pay a lot of money for a simple

JIRA: find all my logged work for last week

让人想犯罪 __ 提交于 2019-12-03 09:32:46
How would I create a JIRA filter that lists all of the issues on which I've logged time? I can then apply this to the activity stream. Scorypto If you have Script Runner installed, you can use the following query. It will show you the issues only where you have logged work in JIRA. issueFunction in workLogged("after 2014/09/01 before 2015/01/30 by <USER_NAME>") Where the dates can be set to the range of the week you want to query, and the USER_NAME can be your username. Script Runner Documentation Mahesha Kalpanie Use advance searching via JQL: worklogAuthor = currentUser() AND worklogDate >=

confluence REST API request while not being admin ends in 401 error

匿名 (未验证) 提交于 2019-12-03 09:06:55
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: i am developing confluence blueprint where a user can choose between jira projects and use them for specific jira issues report. both instances are connected correctly with each other and i get results but only if i am logged as an admin. with normal user i am getting this: <status> <status-code> 401 </status-code> <message> This resource requires WebSudo. </message> </status> unfortunately i have to get the information from the jira server as ajax post request with javascript and here is my code: i have tried to use login

Logstash Shipper configuration for Jira

匿名 (未验证) 提交于 2019-12-03 08:54:24
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I am running Jira and Confluence within my company. I would like the logfiles to be shipped to Kibana. This is very easy to do but I do not want to rewrite the Grok filters. I cannot imagine that nobody has done this already. Does anybody have an example of a logstash shipper configuration. Most of the logging like catalina.log is standard. Please help me with examples 回答1: One would think that Java application logs only come in one form, but my experience is that there often are subtle differences. Sometimes the thread name is in