<?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: How to automatically initiate second search using the results of the first search in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-automatically-initiate-second-search-using-the-results-of/m-p/582193#M202800</link>
    <description>&lt;P&gt;Thanks a lot , i am able to view the results of the&amp;nbsp; user&amp;nbsp; , but i am not able to see a statistics table sorted by the user with the highest&amp;nbsp; count&amp;nbsp; , please can you let me know if it is possible to display the table&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also is it possible to generate a CSV file for each individual user with the highest count ( higher than 100)&amp;nbsp; as part of an alert or as a report&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Jan 2022 04:13:28 GMT</pubDate>
    <dc:creator>Itsecuser1</dc:creator>
    <dc:date>2022-01-24T04:13:28Z</dc:date>
    <item>
      <title>How to automatically initiate second search using the results of the first search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-automatically-initiate-second-search-using-the-results-of/m-p/582174#M202794</link>
      <description>&lt;P&gt;index=logs&amp;nbsp; appname="nameofapp " url=somewebsitenamestring&amp;nbsp; &amp;nbsp; &amp;nbsp;|&amp;nbsp; stats count by user | sort - count | where count &amp;gt; 100&lt;/P&gt;&lt;P&gt;I would get results of 5 users and i want to initiate a different search using the results ,&amp;nbsp; can you let me know how i can do it&amp;nbsp;&lt;/P&gt;&lt;P&gt;index=logs&amp;nbsp; &amp;nbsp;appname="appname&amp;nbsp; " user="here i need those 5 user names&amp;nbsp; found in the results to be inserted&amp;nbsp; &amp;nbsp;"&amp;nbsp; &amp;nbsp; url=*somewebsitenamestring&amp;nbsp; &amp;nbsp;|&amp;nbsp;&amp;nbsp;&amp;nbsp;table _time user url&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I would prefer to receive 5 individual csv files for each user rather than one file with all 5 user data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help , please let me know if this is possible&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Jan 2022 10:46:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-automatically-initiate-second-search-using-the-results-of/m-p/582174#M202794</guid>
      <dc:creator>Itsecuser1</dc:creator>
      <dc:date>2022-01-23T10:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to automatically initiate second search using the results of the first search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-automatically-initiate-second-search-using-the-results-of/m-p/582183#M202798</link>
      <description>&lt;LI-CODE lang="markup"&gt;index=logs   appname="appname url=*somewebsitenamestring   
 [ search index=logs  appname="nameofapp " url=somewebsitenamestring     |  stats count by user | where count &amp;gt; 100 | table user ]
|   table _time user url
  &lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 23 Jan 2022 14:15:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-automatically-initiate-second-search-using-the-results-of/m-p/582183#M202798</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-01-23T14:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to automatically initiate second search using the results of the first search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-automatically-initiate-second-search-using-the-results-of/m-p/582193#M202800</link>
      <description>&lt;P&gt;Thanks a lot , i am able to view the results of the&amp;nbsp; user&amp;nbsp; , but i am not able to see a statistics table sorted by the user with the highest&amp;nbsp; count&amp;nbsp; , please can you let me know if it is possible to display the table&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also is it possible to generate a CSV file for each individual user with the highest count ( higher than 100)&amp;nbsp; as part of an alert or as a report&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 04:13:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-automatically-initiate-second-search-using-the-results-of/m-p/582193#M202800</guid>
      <dc:creator>Itsecuser1</dc:creator>
      <dc:date>2022-01-24T04:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to automatically initiate second search using the results of the first search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-automatically-initiate-second-search-using-the-results-of/m-p/582200#M202803</link>
      <description>&lt;LI-CODE lang="markup"&gt;index=logs   appname="appname url=*somewebsitenamestring   
 [ search index=logs  appname="nameofapp " url=somewebsitenamestring     |  stats count by user | where count &amp;gt; 100 | table user ]
| eventstats count by user
| sort -count
| table _time user url count&lt;/LI-CODE&gt;&lt;P&gt;I don't think you can generate a csv file for each user, you can generate a csv file but it would contain all the results.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 06:57:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-automatically-initiate-second-search-using-the-results-of/m-p/582200#M202803</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-01-24T06:57:54Z</dc:date>
    </item>
  </channel>
</rss>

