jira

jira SOAP and XMLRPC

点点圈 提交于 2020-01-13 18:21:09
问题 I was wondering if there are urls for the various calls that can be made to jira. get issues, get users. what format are they in xml? json? I want to write a wrapper class in python. I see the SOAP api exsists but no methods definitions in python anywhere I can find. I found the java one fairly easy. Your help is appreciated. Please and thank you. 回答1: the Atlassian site has samples right on it. using SOAP client to interact with Jira: http://confluence.atlassian.com/display/JIRA/Creating+a

Logstash Shipper configuration for Jira

时间秒杀一切 提交于 2020-01-13 12:12:21
问题 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

List all JIRA tasks that are not blocked by other tasks

和自甴很熟 提交于 2020-01-12 07:44:08
问题 Using JIRA 4.4.3, I've created a filter that list all the tasks that: - The current user is assigned to; - are Open; - are not blocked by any other task. To make it clear: the task that are ready for a user to work on. We've installed the Craftforge JQL Functions plugin, and I've come with the following JQL query: assignee = currentUser() AND status in (Open) AND issue NOT IN linkedIssuesFromFilter("All Issues", "Blocks", "Outward") The problem is that when an issue that was blocking another

linux安装jira

大憨熊 提交于 2020-01-12 05:36:23
JIRA配置本地MYSQL数据库 https://blog.csdn.net/coin_one/article/details/78376238 jira7.3.6 linux安装及破解 https://www.cnblogs.com/kaola8023/p/6950481.html [JIRA] 最新Linux版本 jira6.3.6安装汉化破解以及数据迁移 https://blog.csdn.net/mchdba/article/details/39441871 详解最新版Jira(7.6.2)在Mac上的安装和破解 https://blog.csdn.net/triples_x/article/details/78959491 CentOS6 安装并破解confluence*** https://cloud.tencent.com/developer/article/1010299 Centos下安装破解Jira7的操作记录*** https://www.cnblogs.com/kevingrace/p/7608813.html 来源: https://www.cnblogs.com/dtdxrk/p/9964372.html

Cloud Jira Webhook Not Firing Created Event for Epics

孤街浪徒 提交于 2020-01-11 11:31:54
问题 Question Is there anything special with jira epics that would preclude them from firing an issue created event for a webhook? Any tricks to get issue_created events to fire for epic creation? Background We sync the cloud jira to an external system. It works pretty well. All issue type except epics are synced on created, but for whatever reasons epics don't seem to fire the create event. Epic is created in JIRA, but never synced. I've confirmed the webhook never receives anything in this case.

RestSharp POST request translation from cURL request

牧云@^-^@ 提交于 2020-01-11 09:42:19
问题 I'm trying to make a POST request using RestSharp to create an issue in JIRA, and what I have to work with is an example that uses cURL. I'm not familiar with either enough to know what I'm doing wrong. Here's the example given in cURL: curl -D- -u fred:fred -X POST --data {see below} -H "Content-Type: application/json" http://localhost:8090/rest/api/2/issue/ Here's their example data: {"fields":{"project":{"key":"TEST"},"summary":"REST ye merry gentlemen.","description":"Creating of an issue

End of Life check fails with NullPointerException

末鹿安然 提交于 2020-01-11 00:11:57
Checks if the running version of JIRA is approaching, or has reached End of Life. Details Type: Bug Status:RESOLVED ( View Workflow ) Priority: Low Resolution:Tracked Elsewhere Affects Version/s:7.6.0 Server, 7.6.1 Server, 7.6.2 Server Fix Version/s: 7.6.3 Server Component/s: System Administration - Support Tools Labels: warranty Support reference count: 21 Symptom Severity: Minor UIS: 20 Description Summary End of Life check (under Atlassian Support tool) fails with NullPointerException Checks if the running version of Jira is approaching, or has reached End of Life. Result Exception during

How can I invoke a RESTful service through Apache Camel?

喜欢而已 提交于 2020-01-10 14:11:31
问题 I am currently using a HTTP method for invoking some URL which will create a JIRA issue. Now I want to use Apache Camel, how can I use that? I need to invoke the following link through Camel: http://localhost:8080/rest/api/2/project/" + key + /components As I'm new to Camel, please suggest some solutions and examples too. Thanks 回答1: You could easily use the CXFRS Component; if you need to do it using the HTTP Component for some reason you could easily use that as well: <setHeader headerName=

Attach screenshot to failed case on jira through jenkins

余生长醉 提交于 2020-01-06 06:25:15
问题 Hello i am new to jenkins. i have successfully done all the jira and jenkins configurations.If my case fails on jenkins the defect is auto reported on jira.I want to confirm if it is possible to attach the scrrenshot to auto reported defect. i have stored the screenshot for failed cases on my local machine directory. 来源: https://stackoverflow.com/questions/55015955/attach-screenshot-to-failed-case-on-jira-through-jenkins

How to get a user by email in a JIRA plugin

非 Y 不嫁゛ 提交于 2020-01-06 03:20:10
问题 When writing a plugin for JIRA, how do you get a user, or just their username, given their email address? It seems that you're supposed to use the findUsersByEmail method in the UserSearchService interface https://docs.atlassian.com/jira/7.0.2/com/atlassian/jira/bc/user/search/UserSearchService.html But how do you get an instance of this class? Or a singleton of it? 回答1: The component system in JIRA is built on Spring. Therefore, if the class you're working on is autowired (e.g. plugin module