I am very new to Add-on for JIRA. I have referred the website "https://splunkbase.splunk.com/app/1438/" and installed the Add-on for JIRA with the current version 2.2.1 locally. The Splunk Enterprise version which I am using is "6.4.2"
When I try to fetch the details of JIRA from Splunk, it gives me no results found. The JQL query which I am trying is below:
| jira jqlsearch "issue = xxx"
Below is the settings which I provided in "bin" folder "config.ini"
[jira]
hostname = jira.example.com
username = xxx
password = xxx
jira_protocol = https
jira_port = 443
Settings in "default" and "local" folder "inputs.conf"
[jira://example]
sourcetype = jira
interval = 60
server = jira.example.com
protocol = https
port = 443
jql = issueType in (epic, story)
fields = *
username = xxx
password = xxx
disabled = 1
Settings in "default" folder "jira.conf"
[jira]
default_project = IT OperationsMax = 1000
keys = link,project,key,summary,type,priority,status,resolution,assignee,reporter,created,updated,resolved,fixVersion,components,labels/label
Fields containing durations, force them to return seconds instead of something human-readable. Optional.
time_keys = timeestimate, originalestimate, timespent
Custom fields to display. Optional.
custom_keys =
Settings in "README" folder "inputs.conf.spec"
[jira://example]
# JIRA server, e.g., jira.example.com
server = jira.example.com
# username is used to query REST API
username = xxx
# password is used to query REST API
password = xxx
# REST API protocol, e.g., https
protocol = https
# REST API port, e.g., 443
port = 443
# JQL query to filter tickets which are indexed, e.g., issueType in (epic, story)
jql = issueType in (epic, story)
# Fields to index, a comma separated field list, e.g., key, summary, type. Default is * all fields
fields = *
I am unaware, still I need to configure anything else in the above configuration files. Not sure where the issue is lying with or any other additional settings are needed to be configured. We need this for our new project and without setting up with JIRA, we could not proceed further.
So please give me some suggestions for making Splunk-JIRA to work asap.
... View more