<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Get list of all jiras with project name and issuetype in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482175#M193196</link>
    <description>&lt;P&gt;it is working now thanks I figured out the issue single quotes are working and the query is taking a long time retrieve the data in splunk&lt;/P&gt;</description>
    <pubDate>Wed, 20 Nov 2019 23:23:18 GMT</pubDate>
    <dc:creator>nukarajusundeep</dc:creator>
    <dc:date>2019-11-20T23:23:18Z</dc:date>
    <item>
      <title>Get list of all jiras with project name and issuetype</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482169#M193190</link>
      <description>&lt;P&gt;I am using this query but I am not getting any data&lt;/P&gt;

&lt;P&gt;| jirarest jqlsearch "project = CHANGE  AND issuetype in ("App Code", "PaaS" , "Arch", "CR-PaaS Maint", "CR-Akamai")"&lt;/P&gt;

&lt;P&gt;when I use the for single jira it is working&lt;BR /&gt;
| jirarest jqlsearch "project = CHANGE  AND "KEY"="CHANGE-88778""&lt;BR /&gt;
 this is returning the value&lt;/P&gt;

&lt;P&gt;What is the mistake i am doing&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 23:41:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482169#M193190</guid>
      <dc:creator>nukarajusundeep</dc:creator>
      <dc:date>2019-11-11T23:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of all jiras with project name and issuetype</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482170#M193191</link>
      <description>&lt;P&gt;@nukarajusundeep, whats the issue type of &lt;CODE&gt;"KEY"="CHANGE-88778""&lt;/CODE&gt; ?&lt;BR /&gt;
Do you have the mentioned issue types in CHANGE Project ?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 09:47:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482170#M193191</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2019-11-12T09:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of all jiras with project name and issuetype</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482171#M193192</link>
      <description>&lt;P&gt;The issue is with unbalanced quotes &lt;CODE&gt;""&lt;/CODE&gt;.&lt;BR /&gt;
Try the below queries,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| jirarest jqlsearch "project=CHANGE AND issuetype in (\"App Code\", \"PaaS\" , \"Arch\", \"CR-PaaS Maint\", \"CR-Akamai\")"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| jirarest jqlsearch "project=CHANGE AND KEY=\"CHANGE-88778\""
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;all the programming languages and tools follow nested quotation rules.&lt;BR /&gt;
as per the rule, all sub-level quotes should be escaped (using &lt;CODE&gt;\\&lt;/CODE&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 13:31:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482171#M193192</guid>
      <dc:creator>gaurav_maniar</dc:creator>
      <dc:date>2019-11-12T13:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of all jiras with project name and issuetype</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482172#M193193</link>
      <description>&lt;P&gt;I tried escape slashes also but it did not work for me&lt;/P&gt;

&lt;P&gt;Note: so basically the data is not in splunk we are using jirarest plugin in splunk which will fetch the data from jira using jirarest ideally jqlquery should work which is not working in my case&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 16:46:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482172#M193193</guid>
      <dc:creator>nukarajusundeep</dc:creator>
      <dc:date>2019-11-12T16:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of all jiras with project name and issuetype</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482173#M193194</link>
      <description>&lt;P&gt;@gaurav that's right initially I used escape slashes but it did not return any data&lt;/P&gt;

&lt;P&gt;Note: jira data is not in SPlunk, here we are using jirarest splunk plugin to do a rest call to jira and get the data&lt;/P&gt;

&lt;P&gt;Here the issue is with the jqlsearch format looks like not sure how to make it work&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 19:04:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482173#M193194</guid>
      <dc:creator>nukarajusundeep</dc:creator>
      <dc:date>2019-11-12T19:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of all jiras with project name and issuetype</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482174#M193195</link>
      <description>&lt;P&gt;yes each jira will have issuetype&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 19:05:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482174#M193195</guid>
      <dc:creator>nukarajusundeep</dc:creator>
      <dc:date>2019-11-12T19:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of all jiras with project name and issuetype</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482175#M193196</link>
      <description>&lt;P&gt;it is working now thanks I figured out the issue single quotes are working and the query is taking a long time retrieve the data in splunk&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 23:23:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Get-list-of-all-jiras-with-project-name-and-issuetype/m-p/482175#M193196</guid>
      <dc:creator>nukarajusundeep</dc:creator>
      <dc:date>2019-11-20T23:23:18Z</dc:date>
    </item>
  </channel>
</rss>

