<?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: Search to display for list of applications to which users never logged in in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525660#M148360</link>
    <description>&lt;P&gt;&lt;SPAN&gt;app_lookup.csv&amp;nbsp; OR&amp;nbsp;App_lookup.csv ??&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It's different.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| inputlookup App_lookup.csv&lt;BR /&gt;| join type=left App_Name&lt;BR /&gt;[ search sourcetype="aduit" success NOT AUTHN_ATTEMPT&lt;BR /&gt;| lookup App_lookup.csv Connection_ID as connectionid OUTPUT App_Name&lt;BR /&gt;| stats count(App_Name) as "Number of Successful Logins" by App_Name&lt;BR /&gt;]&lt;BR /&gt;| where isnull("Number of Successful Logins")&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Oct 2020 01:29:26 GMT</pubDate>
    <dc:creator>hc_joycechen</dc:creator>
    <dc:date>2020-10-21T01:29:26Z</dc:date>
    <item>
      <title>Search to display for list of applications to which users never logged in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525445#M148289</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I would like to list down the applications where users have never logged in. I have a input.csv file with the list of applications and I was able to write a search to list down the applications by login count. Now I want to list the applications where users have logged in (Login Count=0). My query to list all the apps and with login count is as follows:&amp;nbsp;&lt;/P&gt;&lt;P&gt;sourcetype="aduit" success NOT AUTHN_ATTEMPT&lt;BR /&gt;| lookup app_lookup.csv Connection_ID as connectionid OUTPUT App_Name&lt;BR /&gt;| stats count(App_Name) as "Number of Successful Logins" by App_Name&lt;BR /&gt;| sort - "Number of Successful Logins" &amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;How can I get list of apps with 0 logins?&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Rakesh Venkata&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 19:10:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525445#M148289</guid>
      <dc:creator>rvenkata</dc:creator>
      <dc:date>2020-10-19T19:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Search to display for list of applications to which users never logged in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525512#M148315</link>
      <description>&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;| inputlookup app_lookup.csv&lt;BR /&gt;| join type=left App_Name&lt;BR /&gt;[ search sourcetype="aduit" success NOT AUTHN_ATTEMPT&lt;BR /&gt;| lookup app_lookup.csv Connection_ID as connectionid OUTPUT App_Name&lt;BR /&gt;| stats count(App_Name) as "Number of Successful Logins" by App_Name&lt;BR /&gt;]&lt;BR /&gt;| where isnull("Number of Successful Logins")&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 07:35:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525512#M148315</guid>
      <dc:creator>hc_joycechen</dc:creator>
      <dc:date>2020-10-20T07:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: Search to display for list of applications to which users never logged in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525613#M148346</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/45216"&gt;@hc_joycechen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried your solution it is not yielding any results. I modified your suggestion to following:&lt;/P&gt;&lt;P&gt;| inputlookup App_lookup.csv&lt;/P&gt;&lt;P&gt;| join type=left Connection_ID&lt;/P&gt;&lt;P&gt;[ search sourcetype="aduit" tid success NOT AUTHN_ATTEMPT&lt;/P&gt;&lt;P&gt;| lookup App_lookup.csv Connection_ID AS connectionid OUTPUT App_Name&lt;/P&gt;&lt;P&gt;| stats count(App_Name) as LoginCount by App_Name&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;| where isnull(LoginCount)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my csv has two columns Connection_ID &amp;amp; App_Name and connectionid is a field in my events. My above solution results all apps in the csv but not apps which users never logged in. Following is a sample of my csv.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;Connection_ID&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;App_Name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;app1.domain.com&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;App1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;app2.domain.com&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;App2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help me our here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 17:30:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525613#M148346</guid>
      <dc:creator>rvenkata</dc:creator>
      <dc:date>2020-10-20T17:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Search to display for list of applications to which users never logged in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525614#M148347</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/116"&gt;@Ron_Naken&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/45"&gt;@gkanapathy&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/24229"&gt;@lguinn2&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="lia-message-author-avatar lia-component-author-avatar lia-component-message-view-widget-author-avatar"&gt;&lt;DIV class="UserAvatar lia-user-avatar lia-component-common-widget-user-avatar"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;I see that you guys have responded to similar posts previously. Can you please shed your valuable inputs?&lt;/P&gt;&lt;P&gt;Thanks in advance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 17:34:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525614#M148347</guid>
      <dc:creator>rvenkata</dc:creator>
      <dc:date>2020-10-20T17:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Search to display for list of applications to which users never logged in</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525660#M148360</link>
      <description>&lt;P&gt;&lt;SPAN&gt;app_lookup.csv&amp;nbsp; OR&amp;nbsp;App_lookup.csv ??&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It's different.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| inputlookup App_lookup.csv&lt;BR /&gt;| join type=left App_Name&lt;BR /&gt;[ search sourcetype="aduit" success NOT AUTHN_ATTEMPT&lt;BR /&gt;| lookup App_lookup.csv Connection_ID as connectionid OUTPUT App_Name&lt;BR /&gt;| stats count(App_Name) as "Number of Successful Logins" by App_Name&lt;BR /&gt;]&lt;BR /&gt;| where isnull("Number of Successful Logins")&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 01:29:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Search-to-display-for-list-of-applications-to-which-users-never/m-p/525660#M148360</guid>
      <dc:creator>hc_joycechen</dc:creator>
      <dc:date>2020-10-21T01:29:26Z</dc:date>
    </item>
  </channel>
</rss>

