<?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: Listing all knowledge objects enabled in Splunk ES in Splunk Enterprise Security</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741856#M12430</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212865"&gt;@vpantangi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply - hopefully the combination of searches in the thread have helped.&amp;nbsp;&lt;/P&gt;&lt;P&gt;One thing that just sprung to mind which I meant to mention earlier was if you dont have access to the conf files (e.g. on Splunk Cloud) then its worth looking at the "Admins Little Helper" app on Splunkbase. It allows you to run btool commands from the Splunk search box, so you can run&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;btool savedsearches
btool macros&lt;/LI-CODE&gt;&lt;P&gt;for an easily digestible and familiar output!&lt;/P&gt;&lt;P&gt;Dont forget to take an export of your KV stores, Threat Intel feed configuration and Assets and Identities mappings!&lt;/P&gt;&lt;P&gt;Please let me know how you get on and consider adding karma to this or any other answer if it has helped.&lt;BR /&gt;Regards&lt;/P&gt;&lt;P&gt;Will&lt;/P&gt;</description>
    <pubDate>Fri, 14 Mar 2025 18:23:27 GMT</pubDate>
    <dc:creator>livehybrid</dc:creator>
    <dc:date>2025-03-14T18:23:27Z</dc:date>
    <item>
      <title>Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741826#M12419</link>
      <description>&lt;P&gt;Is there a search query to give the list of all the knowledge objects that are enabled in ES , i want to have list of all the correlation searches, macros , lookups and all searches.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 15:34:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741826#M12419</guid>
      <dc:creator>vpantangi</dc:creator>
      <dc:date>2025-03-14T15:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741830#M12420</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212865"&gt;@vpantangi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes. Use a REST search to expose the information in a table with the fields you're interested in. Example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;| rest /services/alerts/correlationsearches | rename eai:acl.app as app, title as csearch_name | table app security_domain csearch_name description&lt;/PRE&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;| rest splunk_server=local count=0 /services/saved/searches&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| where match('action.correlationsearch.enabled', "1|[Tt]|[Tt][Rr][Uu][Ee]")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| rename action.correlationsearch.label as Alert_Name,action.correlationsearch.annotations as frameworks,updated as Last_Updated&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| table Alert_Name, frameworks, disabled, Last_Updated&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| spath input=frameworks&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This can be handy for dumping a list of installed ES correlation searches with disabled status, description, frameworks etc. &amp;nbsp;Be sure your use has the permissions to all knowledge objects if you don't see any you are know are present in an app context.&lt;/P&gt;&lt;PRE&gt;| rest splunk_server=local count=0 /servicesNS/-/-/saved/searches 
| where match('action.correlationsearch.enabled', "1|[Tt]|[Tt][Rr][Uu][Ee]") 
| rename title as search_name, eai:acl.app as app, action.correlationsearch.annotations as frameworks
| table search_name, app, description, frameworks, disabled
| spath input=frameworks
| rename mitre_attack{} as mitre_attack, nist{} as nist, cis20{} as cis20, kill_chain_phases{} as kill_chain_phases
| table app, search_name, description, disabled, cis, kill_chain_phases, nist, mitre_attack&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 16:24:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741830#M12420</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-03-14T16:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741832#M12421</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212865"&gt;@vpantangi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;STRONG&gt;Correlation Searches (Enabled)&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;| rest splunk_server=local count=0 /services/saved/searches&lt;BR /&gt;| where match('action.correlationsearch.enabled', "1|[Tt]|[Tt][Rr][Uu][Ee]")&lt;BR /&gt;| rename eai:acl.app as app, title as correlation_search_name, action.correlationsearch.label as label, action.notable.param.security_domain as security_domain&lt;BR /&gt;| table correlation_search_name, label, app, security_domain, description, search, disabled&lt;BR /&gt;| where disabled=0&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kiran_panchavat_0-1741969658161.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38200i33943A31F40DBABF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kiran_panchavat_0-1741969658161.png" alt="kiran_panchavat_0-1741969658161.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 14 Mar 2025 16:27:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741832#M12421</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-03-14T16:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741834#M12422</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212865"&gt;@vpantangi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;To list all macros defined in your Splunk environment (including those used by Splunk ES):&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kiran_panchavat_1-1741969719174.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38201i986151CB73A5878E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kiran_panchavat_1-1741969719174.png" alt="kiran_panchavat_1-1741969719174.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;PRE&gt;| rest splunk_server=local /servicesNS/-/-/configs/conf-macros 
| rename title as macro_name, eai:acl.app as app 
| table macro_name, definition, app, disabled
| where disabled=0&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 14 Mar 2025 16:28:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741834#M12422</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-03-14T16:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741836#M12423</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212865"&gt;@vpantangi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;To list all lookup definitions (files and configurations) in Splunk ES:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;PRE&gt;| rest splunk_server=local /servicesNS/-/-/configs/conf-transforms &lt;BR /&gt;| where match('filename', ".+") &lt;BR /&gt;| rename title as lookup_name, eai:acl.app as app &lt;BR /&gt;| table lookup_name, filename, app, disabled&lt;BR /&gt;| where disabled=0&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kiran_panchavat_2-1741969747949.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38202i6D2FE633B92F171F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kiran_panchavat_2-1741969747949.png" alt="kiran_panchavat_2-1741969747949.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 16:29:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741836#M12423</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-03-14T16:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741838#M12424</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212865"&gt;@vpantangi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;Additionally, to list lookup files present in the filesystem:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;PRE&gt;| rest splunk_server=local /servicesNS/-/-/data/lookup-table-files &lt;BR /&gt;| rename title as lookup_file, eai:acl.app as app &lt;BR /&gt;| table lookup_file, app&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kiran_panchavat_3-1741969813883.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38203iDA3DD40F12910969/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kiran_panchavat_3-1741969813883.png" alt="kiran_panchavat_3-1741969813883.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 16:31:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741838#M12424</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-03-14T16:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741840#M12425</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212865"&gt;@vpantangi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;To list all enabled saved searches (including those not tagged as correlation searches):&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;PRE&gt;| rest splunk_server=local /servicesNS/-/-/saved/searches &lt;BR /&gt;| rename eai:acl.app as app, title as search_name &lt;BR /&gt;| table search_name, app, search, disabled, description &lt;BR /&gt;| where disabled=0&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kiran_panchavat_4-1741969940479.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38204iD0839F5AE0AC70E8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kiran_panchavat_4-1741969940479.png" alt="kiran_panchavat_4-1741969940479.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 16:32:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741840#M12425</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-03-14T16:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741842#M12426</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212865"&gt;@vpantangi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;If you want a single query to combine all these knowledge objects, you can use &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;append&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt; or &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;union&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;, but the fields will differ slightly, so you’ll need to normalize them. Here’s an example:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;PRE&gt;| rest splunk_server=local /services/saved/searches &lt;BR /&gt;| where match('action.correlationsearch.enabled', "1|[Tt]|[Tt][Rr][Uu][Ee]") AND disabled=0 &lt;BR /&gt;| eval type="Correlation Search" &lt;BR /&gt;| rename title as name, eai:acl.app as app &lt;BR /&gt;| table type, name, app, description, search &lt;BR /&gt;| append &lt;BR /&gt;[ | rest splunk_server=local /servicesNS/-/-/configs/conf-macros &lt;BR /&gt;| eval type="Macro" &lt;BR /&gt;| rename title as name, eai:acl.app as app &lt;BR /&gt;| table type, name, app, definition &lt;BR /&gt;| where disabled=0 ] &lt;BR /&gt;| append &lt;BR /&gt;[ | rest splunk_server=local /servicesNS/-/-/configs/conf-transforms &lt;BR /&gt;| where match('filename', ".+") AND disabled=0 &lt;BR /&gt;| eval type="Lookup" &lt;BR /&gt;| rename title as name, eai:acl.app as app &lt;BR /&gt;| table type, name, app, filename ] &lt;BR /&gt;| append &lt;BR /&gt;[ | rest splunk_server=local /servicesNS/-/-/saved/searches &lt;BR /&gt;| where disabled=0 AND NOT match('action.correlationsearch.enabled', "1|[Tt]|[Tt][Rr][Uu][Ee]") &lt;BR /&gt;| eval type="Saved Search" &lt;BR /&gt;| rename title as name, eai:acl.app as app &lt;BR /&gt;| table type, name, app, description, search ]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kiran_panchavat_5-1741970022274.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38205i5FEB924C8BE2EDA6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kiran_panchavat_5-1741970022274.png" alt="kiran_panchavat_5-1741970022274.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 16:33:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741842#M12426</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-03-14T16:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741844#M12427</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212865"&gt;@vpantangi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is a trimmed down export query that you could use to pull in Savedsearches (Including Correlation searches - which are ultimately saved searches),lookup files, lookup definitions, automatic lookups and macros.&lt;/P&gt;&lt;P&gt;This is part of a much bigger search which you can find at&amp;nbsp;&lt;A href="https://github.com/paychex/Splunk.Conf19/blob/master/CYA_Export_For_Core_Splunk_Query" target="_blank"&gt;https://github.com/paychex/Splunk.Conf19/blob/master/CYA_Export_For_Core_Splunk_Query&lt;/A&gt;&amp;nbsp;which was part of a Conf talk in 2019 given by Paychex which you can see the slides for here (&lt;A href="https://conf.splunk.com/files/2019/slides/FN1315.pdf" target="_blank"&gt;https://conf.splunk.com/files/2019/slides/FN1315.pdf&lt;/A&gt;) and video of here (&lt;A href="https://conf.splunk.com/files/2019/recordings/FN1315.mp4" target="_blank"&gt;https://conf.splunk.com/files/2019/recordings/FN1315.mp4&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;The the search below might generate quite a bit of data which might be hard to read, but you can strip out particular rest calls and run them individually.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| union maxtime=300 timeout=300
[| rest splunk_server="local" "/servicesNS/-/-/saved/searches" | search NOT search="| noop" | eval Type="Saved Searches/Alerts/Reports" | fields - type]
[| rest splunk_server="local" "/servicesNS/-/-/data/lookup-table-files" | eval Type="lookup table files" | fields - type]
[| rest splunk_server="local" "/servicesNS/-/-/data/transforms/lookups" | eval Type="Lookup Definitions" | fields - type fields_array]
[| rest splunk_server="local" "/servicesNS/-/-/data/props/lookups" | eval Type="Automatic lookups" | fields - type value | rex field=title " : [^\-]+-(?&amp;lt;title&amp;gt;[^\e]+)"]
[| rest splunk_server="local" "/servicesNS/-/-/admin/macros" | eval Type="Search Macros" | fields - type]
| eval updated=round(strptime(updated, "%Y-%m-%dT%H:%M:%S"),0)
| fieldformat updated= strftime(updated, "%x %X")
| eval _time=now()

| foreach title "eai:data" "eai:acl.sharing" "eai:acl.perms.read" "eai:acl.perms.write" search definition stanza value transform tag* filename fields_list collection external_type description *cron* is_scheduled schedule_window action* alert* args errormsg validation earliest_time latest_time header_label order display_location fields eventtypes REGEX link.* search.* display.*
    [ eval "&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;"=if(mvcount('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;')&amp;gt;1, mvjoin('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;', ","), '&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;')]
| table _time Type title eai:acl.appauthor eai:acl.perms.read eai:acl.perms.write eai:* *&lt;/LI-CODE&gt;&lt;P&gt;Also - I wondered if this is what you were really looking for? Or if you just need a list of those enabled then you might find adding the reduces the noise!&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| table _time Type title disabled 
| where disabled!=1&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="livehybrid_0-1741970475981.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38206i48141B89E7DB59ED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="livehybrid_0-1741970475981.png" alt="livehybrid_0-1741970475981.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Remember that with ES not all the knowledge objects will be in the "SplunkEnterpriseSecuritySuite" app - infact barely any will be, this is because ES uses a collection of apps (often, but not always starting with SA-) so be careful not to exclude these if you end up scoping particular apps in part of the above, or other, queries!&lt;/P&gt;&lt;P&gt;Let us know if you need more info or have a slightly different intended view of the results and I can work through it.&lt;/P&gt;&lt;P&gt;Please let me know how you get on and consider adding karma to this or any other answer if it has helped.&lt;BR /&gt;Regards&lt;/P&gt;&lt;P&gt;Will&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 16:43:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741844#M12427</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-03-14T16:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741850#M12428</link>
      <description>&lt;P&gt;Thank you for taking your time to reply so mostly i am looking for list of all knowledge objects we use in ES as we are ending our license on ES so looking to transfer all the knowledge objects.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 17:33:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741850#M12428</guid>
      <dc:creator>vpantangi</dc:creator>
      <dc:date>2025-03-14T17:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741851#M12429</link>
      <description>&lt;P&gt;Thank you Kiran i will try all the queries you sent and thank you for taking time to create all of the searches.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 17:35:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741851#M12429</guid>
      <dc:creator>vpantangi</dc:creator>
      <dc:date>2025-03-14T17:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741856#M12430</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212865"&gt;@vpantangi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply - hopefully the combination of searches in the thread have helped.&amp;nbsp;&lt;/P&gt;&lt;P&gt;One thing that just sprung to mind which I meant to mention earlier was if you dont have access to the conf files (e.g. on Splunk Cloud) then its worth looking at the "Admins Little Helper" app on Splunkbase. It allows you to run btool commands from the Splunk search box, so you can run&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;btool savedsearches
btool macros&lt;/LI-CODE&gt;&lt;P&gt;for an easily digestible and familiar output!&lt;/P&gt;&lt;P&gt;Dont forget to take an export of your KV stores, Threat Intel feed configuration and Assets and Identities mappings!&lt;/P&gt;&lt;P&gt;Please let me know how you get on and consider adding karma to this or any other answer if it has helped.&lt;BR /&gt;Regards&lt;/P&gt;&lt;P&gt;Will&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 18:23:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741856#M12430</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-03-14T18:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Listing all knowledge objects enabled in Splunk ES</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741966#M12435</link>
      <description>&lt;P&gt;Thank you very much i will look into it.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 12:43:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Listing-all-knowledge-objects-enabled-in-Splunk-ES/m-p/741966#M12435</guid>
      <dc:creator>vpantangi</dc:creator>
      <dc:date>2025-03-17T12:43:33Z</dc:date>
    </item>
  </channel>
</rss>

