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. I have also installed the JIRA v7.5.0 in my local system and created some sample tickets in it.
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 = SRET-9"
1. Below is the settings which I provided in bin folder "config.ini"
[jira]
hostname = http://localhost:8080/
username= username
password = password
jira_protocol = http
jira_port = 443soap_protocol = httpsoap_port = 8080
2. Settings in default and local folder "inputs.conf"
[jira:SRE_test]
sourcetype = jiraindex=jira
interval = 60
server = localhost:8080
protocol = http
port = 443
jql = issueType in (epic, story)
fields = *
username= username
password = password
disabled = 1
3. Settings in default folder "jira.conf"
[jira]
default_project = SRE_test
tempMax = 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 =
4. Settings in README folder "inputs.conf.spec"
[jira:SRE_test]
# JIRA server, e.g., jira.example.com
server = http://localhost:8080# username is used to query REST API
username = username
# password is used to query REST API
password = password# REST API protocol, e.g., https
protocol = http
# REST API port, e.g., 443
port = 443
# JQL query to filter tickets which are indexed, e.g., issueType in (epic, story)
jql =
# Fields to index, a comma separated field list, e.g., key, summary, type. Default is * all fields
fields =
I am unaware where the issue is lying with or any other additional settings are needed to be configured. Could anyone please help me on this asap.
↧