<?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: Is it possible to get a list of all the Indexes which are used in ITSI and all the related services to those indexes in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-get-a-list-of-all-the-Indexes-which-are-used/m-p/625800#M217520</link>
    <description>&lt;P&gt;Hello All:&lt;BR /&gt;&lt;BR /&gt;I found the following SPL to do exactly what i needed:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;| inputlookup service_kpi_sbs_lookup&lt;BR /&gt;| rex field=kpis.base_search "^.*index=(?&amp;lt;indexUsed&amp;gt;\w+)\s"&lt;BR /&gt;| rex field=kpis.base_search "^.*index IN\s\((?&amp;lt;indexUsed&amp;gt;[a-zA-Z_,\s]+)\)\s"&lt;BR /&gt;| fields indexUsed kpis.title title&lt;BR /&gt;| eval indexUsed=mvdedup(indexUsed)&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Cheers.&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jan 2023 12:54:06 GMT</pubDate>
    <dc:creator>Suara</dc:creator>
    <dc:date>2023-01-04T12:54:06Z</dc:date>
    <item>
      <title>Is it possible to get a list of all the Indexes which are used in ITSI and all the related services to those indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-get-a-list-of-all-the-Indexes-which-are-used/m-p/625677#M217476</link>
      <description>&lt;P&gt;Hello Community !&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is it possible to get a list of all the Indexes which are used in ITSI and all the related services to those indexes with a SPL ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;| REST /services/data/indexes | dedup title | sort title | table title&amp;nbsp; &amp;nbsp; &amp;nbsp;-&amp;nbsp; I found this to be helpful but it's not the answer which i'm looking for.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you in advance !&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2023 16:09:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-get-a-list-of-all-the-Indexes-which-are-used/m-p/625677#M217476</guid>
      <dc:creator>Suara</dc:creator>
      <dc:date>2023-01-03T16:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: ITSI Indexes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-get-a-list-of-all-the-Indexes-which-are-used/m-p/625730#M217497</link>
      <description>&lt;P&gt;You can find a list of ITSI indexes at&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/ITSI/4.15.0/Install/Indexes#ITSI_indexes" target="_blank"&gt;https://docs.splunk.com/Documentation/ITSI/4.15.0/Install/Indexes#ITSI_indexes&lt;/A&gt;&lt;/P&gt;&lt;P&gt;To find them programmatically, add a filter on &lt;FONT face="courier new,courier"&gt;eai:acl.app&lt;/FONT&gt; to your query.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| REST /services/data/indexes
| search eai:acl.app="SA-IndexCreation" 
| dedup title 
| sort title 
| table title&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2023 16:00:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-get-a-list-of-all-the-Indexes-which-are-used/m-p/625730#M217497</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-01-03T16:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: ITSI Indexes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-get-a-list-of-all-the-Indexes-which-are-used/m-p/625777#M217512</link>
      <description>&lt;P&gt;Hello Rich,&lt;BR /&gt;&lt;BR /&gt;Thank you for the reply but i'm trying to figure out an SPL that can list all the indexes which we created excluding the default ones. And i'm trying to investigate if there is an SPL also that can list which Services use which Indexes in our environment.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have to create a document that lists all of that for our company &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 07:21:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-get-a-list-of-all-the-Indexes-which-are-used/m-p/625777#M217512</guid>
      <dc:creator>Suara</dc:creator>
      <dc:date>2023-01-04T07:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to get a list of all the Indexes which are used in ITSI and all the related services to those indexes</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-get-a-list-of-all-the-Indexes-which-are-used/m-p/625800#M217520</link>
      <description>&lt;P&gt;Hello All:&lt;BR /&gt;&lt;BR /&gt;I found the following SPL to do exactly what i needed:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;| inputlookup service_kpi_sbs_lookup&lt;BR /&gt;| rex field=kpis.base_search "^.*index=(?&amp;lt;indexUsed&amp;gt;\w+)\s"&lt;BR /&gt;| rex field=kpis.base_search "^.*index IN\s\((?&amp;lt;indexUsed&amp;gt;[a-zA-Z_,\s]+)\)\s"&lt;BR /&gt;| fields indexUsed kpis.title title&lt;BR /&gt;| eval indexUsed=mvdedup(indexUsed)&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Cheers.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 12:54:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-get-a-list-of-all-the-Indexes-which-are-used/m-p/625800#M217520</guid>
      <dc:creator>Suara</dc:creator>
      <dc:date>2023-01-04T12:54:06Z</dc:date>
    </item>
  </channel>
</rss>

