<?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: There are a list of apps present on shcluster , how to check if any knowledge objects are associated/mapped to each apps? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481460#M193089</link>
    <description>&lt;P&gt;I tried the above but did not get any results. I searched it on the indexer serach head. Where do i need to search this query. &lt;/P&gt;</description>
    <pubDate>Tue, 14 Jan 2020 17:17:27 GMT</pubDate>
    <dc:creator>Nilesh3110</dc:creator>
    <dc:date>2020-01-14T17:17:27Z</dc:date>
    <item>
      <title>There are a list of apps present on shcluster , how to check if any knowledge objects are associated/mapped to each apps?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481455#M193084</link>
      <description>&lt;P&gt;I have multiple apps on shcluster, "/application/splunk/etc/shcluster/apps" . I need to check if there are any Knowledge objects related to these apps, that is to say if these apps are actually requred or not. Is there a way i can get the details of all the Knowledge objects related to an application. Any Shell script which gives me this information ? &lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 18:11:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481455#M193084</guid>
      <dc:creator>Nilesh3110</dc:creator>
      <dc:date>2020-01-09T18:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: There are a list of apps present on shcluster , how to check if any knowledge objects are associated/mapped to each apps?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481456#M193085</link>
      <description>&lt;P&gt;You can use rest commands to know what apps those knowledge objects are associated.&lt;BR /&gt;
There's alot of rest commands  in this link &lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.1/RESTREF/RESTlist"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.1/RESTREF/RESTlist&lt;/A&gt;  ,depends on what you need.&lt;BR /&gt;
For example:&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.1/RESTREF/RESTknowledge"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.1/RESTREF/RESTknowledge&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.1/RESTREF/RESTsearch"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.1/RESTREF/RESTsearch&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 18:48:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481456#M193085</guid>
      <dc:creator>jarizeloyola</dc:creator>
      <dc:date>2020-01-09T18:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: There are a list of apps present on shcluster , how to check if any knowledge objects are associated/mapped to each apps?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481457#M193086</link>
      <description>&lt;P&gt;This is more of theory , I m going through them ... actually i am looking for some script which pulls up these information and gives me a report for all the related knowledge objects for an application . &lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 14:38:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481457#M193086</guid>
      <dc:creator>Nilesh3110</dc:creator>
      <dc:date>2020-01-10T14:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: There are a list of apps present on shcluster , how to check if any knowledge objects are associated/mapped to each apps?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481458#M193087</link>
      <description>&lt;P&gt;When you run those rest command in splunk search it will give you the information you needed for the  knowledge objects for example (you can run in MC):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest "/servicesNS/-/-/admin/savedsearch/" search="is_scheduled=1" search="disabled=0" splunk_server=sh* 
    [| makeresults 
    | eval earliest_time=relative_time(now(), "-0s@s"), latest_time=relative_time(now(), "+15m@s")
    | return earliest_time, latest_time ] 
| table splunk_server eai:acl.app eai:acl.owner cron_schedule title scheduled_times
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 10 Jan 2020 14:59:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481458#M193087</guid>
      <dc:creator>jarizeloyola</dc:creator>
      <dc:date>2020-01-10T14:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: There are a list of apps present on shcluster , how to check if any knowledge objects are associated/mapped to each apps?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481459#M193088</link>
      <description>&lt;P&gt;Thanks a lot jarizeloyola. I m bit confused, whats the index for the above . Or do i need to run it with Curl. If possible can u pls give me the complete command or the way i can run the above search , as the above given search does not run give anything . Thanks &lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2020 16:33:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481459#M193088</guid>
      <dc:creator>Nilesh3110</dc:creator>
      <dc:date>2020-01-13T16:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: There are a list of apps present on shcluster , how to check if any knowledge objects are associated/mapped to each apps?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481460#M193089</link>
      <description>&lt;P&gt;I tried the above but did not get any results. I searched it on the indexer serach head. Where do i need to search this query. &lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 17:17:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481460#M193089</guid>
      <dc:creator>Nilesh3110</dc:creator>
      <dc:date>2020-01-14T17:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: There are a list of apps present on shcluster , how to check if any knowledge objects are associated/mapped to each apps?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481461#M193090</link>
      <description>&lt;P&gt;it is just a sample  , you can run it in any of the shc member or to the MC. you should be an admin or have the right privilege to  get the result.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest  "/servicesNS/-/-/admin/savedsearch/" splunk_server="*"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 Jan 2020 20:25:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/There-are-a-list-of-apps-present-on-shcluster-how-to-check-if/m-p/481461#M193090</guid>
      <dc:creator>jarizeloyola</dc:creator>
      <dc:date>2020-01-14T20:25:43Z</dc:date>
    </item>
  </channel>
</rss>

