-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
22 lines (18 loc) · 819 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
This appender uses Jira SOAP connector to create issues in Jira.
Appender parameters:
* url - Jira SOAP service url
* username - Jira username
* password - Jira password
* project - target project in Jira
* issueTypeId - type id of issues to create in Jira
* enabled - allows disabling appender, for example using system property
Duplicate issues are not created. Appender considers issue to be duplicate in
case if it has the same summary and description.
<appender name="jira" class="ee.ignite.logtojira.LogToJiraAppender">
<param name="url" value="http://localhost:2990/jira/rpc/soap/jirasoapservice-v2"/>
<param name="username" value="admin"/>
<param name="password" value="admin"/>
<param name="project" value="TST"/>
<param name="issueTypeId" value="1"/>
<param name="enabled" value="true"/>
</appender>