<?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: Compatibility with Splunk 7.3 in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390421#M47653</link>
    <description>&lt;P&gt;Try now ^^&lt;/P&gt;</description>
    <pubDate>Tue, 06 Aug 2019 07:38:40 GMT</pubDate>
    <dc:creator>DavidHourani</dc:creator>
    <dc:date>2019-08-06T07:38:40Z</dc:date>
    <item>
      <title>Compatibility with Splunk 7.3</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390417#M47649</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Expensive Searches on Dashboards in Bloodhound app shows no results in Splunk 7.3. Do you know about the fix?&lt;/P&gt;

&lt;P&gt;It looks like events in _internal index might have changed between 7.3 and 7.2. I am trying but not quite sucessfully in tackling this issues. Looks like when searching for events about searches in dashboards, there is no field "id" that is used as a key field in a lookup. &lt;/P&gt;

&lt;P&gt;Tomas&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 08:58:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390417#M47649</guid>
      <dc:creator>tomasmoser</dc:creator>
      <dc:date>2019-07-17T08:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility with Splunk 7.3</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390418#M47650</link>
      <description>&lt;P&gt;I made "Expensive Searches on Dashboards" dashboard work with the following modifications below. In a nutshell I created new saved search to fill a temporary lookup, another saved search to clean lookup after 30 days and modified dashboard to query this lookup instead of raw events.  &lt;/P&gt;

&lt;P&gt;&lt;EM&gt;Updated "expensive_searches" dashboard&lt;/EM&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup inventory_app_view_sid where $app$ $dashboard$
| rename AppName as search_app 
| lookup inventory_jobs sid OUTPUT diskUsage label owner eventCount scanCount runDuration ttl search 
| eval eventscan_ratio=eventCount/scanCount 
| eval diskUsage=diskUsage/1048576 
| fillnull eventscan_ratio value=0 
| stats avg(diskUsage) as diskUsage count as hits dc(label) as dc_searches values(owner) as owner avg(eventscan_ratio) as eventscan_ratio avg(runDuration) as avg_runDuration values(sid) as sid by ViewName search_app 
| sort - avg_runDuration 
| where dc_searches&amp;gt;0 
| head 10 
| lookup inventory_views name AS ViewName app as search_app OUTPUT label AS dlabel 
| lookup inventory_apps name as search_app OUTPUT label as alabel 
| eval dlabel=if(isnull(dlabel),ViewName,dlabel) 
| rename dlabel as "Dashboard Name" alabel as App diskUsage as "Avg Disk Usage MB" dc_searches as "Search Count" owner as User eventscan_ratio as "Avg Event Scan Ratio" avg_runDuration as "Avg Run Duration (sec)" hits as "Dashboard Hits"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;EM&gt;Added new saved search "bloodhound_inventory_kvstore_app_view_sid_gen":&lt;/EM&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest /services/search/jobs 
| search provenance="UI:Dashboard:*" 
| rex field=provenance "UI:Dashboard:(?&amp;lt;ViewName&amp;gt;.*)" 
| eval time=searchLatestTime 
| rename eai:acl.* as * 
| rename app as AppName 
| stats count by time sid AppName ViewName 
| fields - count
| outputlookup inventory_app_view_sid
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;EM&gt;Added new saved bloodhound_inventory_kvstore_app_view_sid_cleanup":&lt;/EM&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup inventory_app_view_sid 
| where time&amp;gt;=relative_time(now(), "-30d@d")
| outputlookup inventory_app_view_sid
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Sep 2020 01:36:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390418#M47650</guid>
      <dc:creator>tomasmoser</dc:creator>
      <dc:date>2020-09-30T01:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility with Splunk 7.3</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390419#M47651</link>
      <description>&lt;P&gt;Hey hey, please accept your own answer if it's working &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 11:58:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390419#M47651</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-08-05T11:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility with Splunk 7.3</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390420#M47652</link>
      <description>&lt;P&gt;I cannot. No button to press.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 19:40:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390420#M47652</guid>
      <dc:creator>tomasmoser</dc:creator>
      <dc:date>2019-08-05T19:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility with Splunk 7.3</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390421#M47653</link>
      <description>&lt;P&gt;Try now ^^&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 07:38:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Compatibility-with-Splunk-7-3/m-p/390421#M47653</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2019-08-06T07:38:40Z</dc:date>
    </item>
  </channel>
</rss>

