<?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: Why is my license usage search by app not showing information for all apps in my environment? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267005#M80317</link>
    <description>&lt;P&gt;I have executed both the queries and still 3 apps are missing in result in both queries..&lt;/P&gt;</description>
    <pubDate>Thu, 04 Feb 2016 13:33:09 GMT</pubDate>
    <dc:creator>sunnyparmar</dc:creator>
    <dc:date>2016-02-04T13:33:09Z</dc:date>
    <item>
      <title>Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/266999#M80311</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have a search mentioned below to see license usage per app, but the issue I am facing is, if I run the search without this portion ( &lt;CODE&gt;| chart sum(GB) by app_name&lt;/CODE&gt;) at the end, then it gives the license usage for all apps with their indexes and sourcetypes respectively. However, if I exclude it from the end, then it is not showing license usage for all the apps. Kindly suggest for this. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*license_usage.log type="Usage" | eval indexname = if(len(idx)=0 OR isnull(idx),"(UNKNOWN)",idx)  | eval sourcetypename = st  | bin _time span=1d  | stats sum(b) as b by _time, pool, indexname, sourcetypename | eval GB=round(b/1024/1024/1024, 3)| fields _time, indexname, sourcetypename, GB |  join sourcetypename [       | rest /services/saved/sourcetypes       | fields title, "eai:acl.app"       | rename title AS sourcetypename, "eai:acl.app" AS app_name  ] | chart sum(GB) by app_name
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks &lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 09:35:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/266999#M80311</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-04T09:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267000#M80312</link>
      <description>&lt;P&gt;Not sure exactly but the same search works for me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source="*license_usage.log" type="Usage" 
| eval indexname = if(len(idx)=0 OR isnull(idx),"(UNKNOWN)",idx) | eval sourcetypename = st | bin _time span=1d 
| stats sum(b) as b by _time, pool, indexname, sourcetypename | eval GB=round(b/1024/1024/1024, 3)
| fields _time, indexname, sourcetypename, GB 
| join sourcetypename [ | rest /services/saved/sourcetypes | fields title, "eai:acl.app" | rename title AS sourcetypename, "eai:acl.app" AS app_name ]
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Feb 2016 10:02:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267000#M80312</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2016-02-04T10:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267001#M80313</link>
      <description>&lt;P&gt;have you executed the query with adding parameter (| chart sum(GB) by app_name) in the last. Please let me know if it will show you all your apps in the result. Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 11:41:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267001#M80313</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-04T11:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267002#M80314</link>
      <description>&lt;P&gt;Yes I have only 2 apps in my test and they are showing like below&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;app_name                                                   sum(GB)
search                                                  0.000
splunk_app_windows_infrastructure   0.001
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Final search I ran :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source="*license_usage.log" type="Usage" 
 | eval indexname = if(len(idx)=0 OR isnull(idx),"(UNKNOWN)",idx) | eval sourcetypename = st | bin _time span=1d 
 | stats sum(b) as b by _time, pool, indexname, sourcetypename | eval GB=round(b/1024/1024/1024, 3)
 | fields _time, indexname, sourcetypename, GB 
 | join sourcetypename [ | rest /services/saved/sourcetypes | fields title, "eai:acl.app" | rename title AS sourcetypename, "eai:acl.app" AS app_name ]
 | chart sum(GB) by app_name
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Are you getting some apps or not at all ? &lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 11:53:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267002#M80314</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2016-02-04T11:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267003#M80315</link>
      <description>&lt;P&gt;i am getting some app but not all.. what i want is to enlisted all the apps in the final result. Just don't understand why it behaves weird?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 12:13:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267003#M80315</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-04T12:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267004#M80316</link>
      <description>&lt;P&gt;can you run below search and see if all these apps are showing in the original search ?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source="*license_usage.log" type="Usage" 
  | eval indexname = if(len(idx)=0 OR isnull(idx),"(UNKNOWN)",idx) | eval sourcetypename = st | bin _time span=1d 
  | stats sum(b) as b by _time, pool, indexname, sourcetypename | eval GB=round(b/1024/1024/1024, 3)
  | fields _time, indexname, sourcetypename, GB 
  | join sourcetypename [ | rest /services/saved/sourcetypes | fields title, "eai:acl.app" | rename title AS sourcetypename, "eai:acl.app" AS app_name ]|table app_name|dedup app_name
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;OR&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    index=_internal source="*license_usage.log" type="Usage" 
      | eval indexname = if(len(idx)=0 OR isnull(idx),"(UNKNOWN)",idx) | eval sourcetypename = st | bin _time span=1d 
      | stats sum(b) as b by _time, pool, indexname, sourcetypename | eval GB=round(b/1024/1024/1024, 3)
      | fields _time, indexname, sourcetypename, GB 
      | join sourcetypename [ | rest /services/saved/sourcetypes | fields title, "eai:acl.app" | rename title AS sourcetypename, "eai:acl.app" AS app_name ]|stats count by app_name
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And also check the next pages if there are (its obvious but just in case)&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 12:47:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267004#M80316</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2016-02-04T12:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267005#M80317</link>
      <description>&lt;P&gt;I have executed both the queries and still 3 apps are missing in result in both queries..&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 13:33:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267005#M80317</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-04T13:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267006#M80318</link>
      <description>&lt;P&gt;Are those three apps coming as part of original detailed search ?  Also those three apps have common &lt;EM&gt;sourcetypename&lt;/EM&gt; to result in join ?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 14:27:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267006#M80318</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2016-02-04T14:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267007#M80319</link>
      <description>&lt;P&gt;Q - Are those three apps coming as part of original detailed search?&lt;BR /&gt;
A - Yes..&lt;/P&gt;

&lt;P&gt;Q - Also those three apps have common sourcetypename to result in join ?&lt;BR /&gt;
A- Sorry, Didn't get you.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2016 06:47:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267007#M80319</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-07T06:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267008#M80320</link>
      <description>&lt;P&gt;You have mentioned before, the result of the below search is missing the three app names. Then what you mean by "Yes" to the question " Are those three apps coming as part of original detailed search?" . Sorry just trying to understand the problem.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=_internal source="*license_usage.log" type="Usage" 
   | eval indexname = if(len(idx)=0 OR isnull(idx),"(UNKNOWN)",idx) | eval sourcetypename = st | bin _time span=1d 
   | stats sum(b) as b by _time, pool, indexname, sourcetypename | eval GB=round(b/1024/1024/1024, 3)
   | fields _time, indexname, sourcetypename, GB 
   | join sourcetypename [ | rest /services/saved/sourcetypes | fields title, "eai:acl.app" | rename title AS sourcetypename, "eai:acl.app" AS app_name ]|table app_name|dedup app_name
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you are not getting those three apps as part of this search, then it could be your &lt;STRONG&gt;join&lt;/STRONG&gt; is eliminating the apps (few sourcetypes missing from any of the two searches)&lt;BR /&gt;
Try this again and see if you have any "Not Found" in app name.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   index=_internal source="*license_usage.log" type="Usage" 
       | eval indexname = if(len(idx)=0 OR isnull(idx),"(UNKNOWN)",idx) | eval sourcetypename = st | bin _time span=1d 
       | stats sum(b) as b by _time, pool, indexname, sourcetypename | eval GB=round(b/1024/1024/1024, 3)
       | fields _time, indexname, sourcetypename, GB 
       | join sourcetypename type=outer [ | rest /services/saved/sourcetypes | fields title, "eai:acl.app" | rename title AS sourcetypename, "eai:acl.app" AS app_name ]|eval app_name=coalesce(app_name,"Not Found" |stats count by app_name
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If the above is also not working for youo then get one of the app from the missing three and then search for it in the results of original detailed search(the main search with join)  &lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2016 11:03:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267008#M80320</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2016-02-07T11:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267009#M80321</link>
      <description>&lt;P&gt;sorry .. took your first question in wrong meaning. First question answer is "no". those three apps are not the part of original detailed search as i was mentioned earlier. By executing your above given query i am getting the error message below -&lt;/P&gt;

&lt;P&gt;"Error in 'eval' command: The expression is malformed. Expected ). "&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2016 13:08:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267009#M80321</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-07T13:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267010#M80322</link>
      <description>&lt;P&gt;no problem. I missed a ")" in eval . just replace it with&lt;CODE&gt;|eval app_name=coalesce(app_name,"Not Found")|stats count by app_name&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;OK so if it's not in your detailed search, it's not the problem with &lt;EM&gt;stats&lt;/EM&gt;. Now we need to look at the &lt;STRONG&gt;join&lt;/STRONG&gt; command. It's possible that the sourcetypes from your missing 'three' apps might not be sending the data and hence the sourcetype is not matching in "join" . Get the sourcetypes from those missing apps and see if it's sending any data.&lt;/P&gt;

&lt;P&gt;Hope now you will be able to identify the reason.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2016 14:54:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267010#M80322</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2016-02-07T14:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267011#M80323</link>
      <description>&lt;P&gt;Thanks for the correction. Now i have start getting data in "Not found". The index and sourcetype i am getting is - &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index                       sourcetype
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;qv-perfmon        Perfmon:CPUTime&lt;BR /&gt;&lt;BR /&gt;
qv-perfmon        Perfmon:FreeDiskSpace&lt;BR /&gt;&lt;BR /&gt;
qv-perfmon        Perfmon:Memory&lt;BR /&gt;&lt;BR /&gt;
qv-winevents      WinEventLog:Application&lt;BR /&gt;&lt;BR /&gt;
qv-winevents      WinEventLog:Security&lt;BR /&gt;&lt;BR /&gt;
qv-winevents      WinEventLog:System    &lt;/P&gt;

&lt;P&gt;Now the issue is that these are common sourcetypes as you know that while fetching logs for host health checks in splunk these are the common sourcetypes that we have to define in inputs.conf file so could you please tell me that how to overcome through this issue.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 06:14:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267011#M80323</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-08T06:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267012#M80324</link>
      <description>&lt;P&gt;thanks for the correction. By executing that query i am getting data in "Not Found".&lt;/P&gt;

&lt;P&gt;Index                            Sourcetype&lt;BR /&gt;
qv-perfmon           Perfmon:CPUTime&lt;BR /&gt;&lt;BR /&gt;
qv-perfmon           Perfmon:FreeDiskSpace&lt;BR /&gt;&lt;BR /&gt;
qv-perfmon           Perfmon:Memory&lt;BR /&gt;&lt;BR /&gt;
qv-winevents    WinEventLog:Application&lt;BR /&gt;&lt;BR /&gt;
qv-winevents    WinEventLog:Security&lt;BR /&gt;&lt;BR /&gt;
qv-winevents    WinEventLog:System  &lt;/P&gt;

&lt;P&gt;But now the issue here is it is very common sourcetype that we used in splunk for making alerts for host health checks and make entries in inputs.conf so in this case could you please tell me how to overcome this issue?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 06:30:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267012#M80324</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-08T06:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267013#M80325</link>
      <description>&lt;P&gt;By using below parameter i am able to enlisted all the apps in the result but when i am going to replace it with my final search query parameter (| rest /services/saved/sourcetypes ), it won't work. Do you have any idea on this?&lt;/P&gt;

&lt;P&gt;| REST /services/apps/local splunk_server=local | table label&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 07:24:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267013#M80325</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-08T07:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267014#M80326</link>
      <description>&lt;P&gt;Your alerts/searches are not aaffected by this. The above sourcetypes might not be part of any app and hence app_name is not displayed.&lt;/P&gt;

&lt;P&gt;Again to find out the missing apps , let's do step by step&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;Take one of the apps from the missing list (let's say app1)&lt;/LI&gt;
&lt;LI&gt;Find out its sourcetypes &lt;CODE&gt;| rest /services/saved/sourcetypes | fields title, "eai:acl.app" | rename title AS sourcetypename, "eai:acl.app" AS app_name|search app_name="app1"&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Check those sourcetypes are part of your license search &lt;CODE&gt;index=_internal source="*license_usage.log" type="Usage" st="sourcetypes from stpe2"&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;If you don't get any results for step3 , the app1 is not sending any data and hence its missing since you have a join to map the sourcetypes. So it results only those apps which has a matching sourcetype in your "license search"&lt;/LI&gt;
&lt;LI&gt;In case you find it out, try changing the time range of your initial search to something bigger ,let's say last 30 days&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Mon, 08 Feb 2016 09:29:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267014#M80326</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2016-02-08T09:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267015#M80327</link>
      <description>&lt;P&gt;hey, on executing your both queries (2 &amp;amp; 3) it is giving me "no result found".  Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 09:44:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267015#M80327</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-08T09:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267016#M80328</link>
      <description>&lt;P&gt;Well sorry once again as i am executing wrong previously.. so now what I comes up with final result is after running 2nd point query  is - &lt;BR /&gt;
sourcetypename           app_name&lt;BR /&gt;
Alusta_Validation       Alusta_Tenant_Validation &lt;BR /&gt;
and when i am providing the sourcetype in  3rd point query so it is giving "no result found". so now could you please tell me that how to merge Alusta_validation sourcetype with join. &lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:42:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267016#M80328</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2020-09-29T08:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267017#M80329</link>
      <description>&lt;P&gt;Can you try this for the time range you are using in your license search&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=* sourcetype="Alusta_Validation"|stats count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you are not getting any result for this, there is no data indexing for this sourcetype. If there is no data indexing for the sourcetype, it does not make sense to include it as part of license usage&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 11:18:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267017#M80329</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2016-02-08T11:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my license usage search by app not showing information for all apps in my environment?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267018#M80330</link>
      <description>&lt;P&gt;it is showing the last logs of September 2015. After that there is no logs detail.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 11:34:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-my-license-usage-search-by-app-not-showing-information/m-p/267018#M80330</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2016-02-08T11:34:58Z</dc:date>
    </item>
  </channel>
</rss>

