<?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 Reading in a list of username, counting them and create comparison to previous month in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342022#M101346</link>
    <description>&lt;P&gt;I need to read in a file of exchange mailboxes and usernames/accounts, provide the total number of mailboxes, usernames/accounts and compare that number to the count from the previous month and show a graph with the new mailboxes/counts. We have extracted the information using powershell and have imported the info, just not sure how to count the names and provide the comparison, any help is appreciated.&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2017 17:04:49 GMT</pubDate>
    <dc:creator>johnquinn</dc:creator>
    <dc:date>2017-06-10T17:04:49Z</dc:date>
    <item>
      <title>Reading in a list of username, counting them and create comparison to previous month</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342022#M101346</link>
      <description>&lt;P&gt;I need to read in a file of exchange mailboxes and usernames/accounts, provide the total number of mailboxes, usernames/accounts and compare that number to the count from the previous month and show a graph with the new mailboxes/counts. We have extracted the information using powershell and have imported the info, just not sure how to count the names and provide the comparison, any help is appreciated.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2017 17:04:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342022#M101346</guid>
      <dc:creator>johnquinn</dc:creator>
      <dc:date>2017-06-10T17:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reading in a list of username, counting them and create comparison to previous month</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342023#M101347</link>
      <description>&lt;P&gt;can you provide a sample of the data you're working with?&lt;/P&gt;

&lt;P&gt;Have you tried to use the timewrap app to complete this month over month comparison?&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2017 23:40:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342023#M101347</guid>
      <dc:creator>cmerriman</dc:creator>
      <dc:date>2017-06-11T23:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Reading in a list of username, counting them and create comparison to previous month</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342024#M101348</link>
      <description>&lt;P&gt;Just in case, here is the link to the app &lt;A href="https://splunkbase.splunk.com/app/1645/"&gt;https://splunkbase.splunk.com/app/1645/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2017 23:42:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342024#M101348</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2017-06-11T23:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Reading in a list of username, counting them and create comparison to previous month</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342025#M101349</link>
      <description>&lt;P&gt;While Timewrap App might not be supported for newer version of Splunk, timwrap command is available in SPL itself from Splunk Enterprise 6.5 onward: &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Timewrap"&gt;http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Timewrap&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;However, as per @cmerriman, do provide some sample data. &lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 20:23:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342025#M101349</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-06-12T20:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Reading in a list of username, counting them and create comparison to previous month</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342026#M101350</link>
      <description>&lt;P&gt;This trivial example assumes: that you have loaded the data from both files into index foo, with source bar; that the events have a _time as/of the date of pull or that if you use the date of load that you load the files within the calendar month; that you don't care to know exactly how many were added or deleted, just what the number was; ... and I guess that's it.   &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=foo source=bar 
| bin _time span=1mon
| stats count by _time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 12 Jun 2017 20:39:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342026#M101350</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-06-12T20:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reading in a list of username, counting them and create comparison to previous month</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342027#M101351</link>
      <description>&lt;P&gt;Thank you @cmerriman, niketnilay amd MuS. I cannot attach (not enough points) but included content from may one from june.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;May&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
Name                                    WhenCreated                             WhenCreatedUTC                         
----                                    -----------                             --------------                         
George Jones                      4/6/2009 8:39:33 AM                     4/6/2009 1:39:33 PM                    
Dan Smith                             11/28/2011 3:17:23 PM                   11/28/2011 9:17:23 PM                  
Kathy Smoke                           05/01/2017 8:14:42 AM                   05/01/2017 8:14:42 AM                   
Jeffrey Everest                       7/22/2010 12:32:00 PM                   7/22/2010 5:32:00 PM                   

1 new users
1 removed users
4 total users
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;may&amp;gt;&amp;gt;

&amp;gt;&amp;gt;&amp;gt;june&amp;gt;&amp;gt;&amp;gt;
Name                                    WhenCreated                             WhenCreatedUTC                         
----                                    -----------                             --------------                         
George Jones                      4/6/2009 8:39:33 AM                     4/6/2009 1:39:33 PM                    
Dan Smith                             11/28/2011 3:17:23 PM                   11/28/2011 9:17:23 PM                  
Jeffrey Everest                       7/22/2010 12:32:00 PM                   7/22/2010 5:32:00 PM                   
Kathy Smoke                           05/01/2017 8:14:42 AM                   05/01/2017 8:14:42 AM
Bill Hope                 06/01/2017 3:17:23 PM                   06/01/2017 3:17:23 PM 

1 new users
0 removed users
5 total users
&amp;lt;&amp;lt;&amp;lt;&amp;gt;&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 12 Jun 2017 20:41:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342027#M101351</guid>
      <dc:creator>johnquinn</dc:creator>
      <dc:date>2017-06-12T20:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reading in a list of username, counting them and create comparison to previous month</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342028#M101352</link>
      <description>&lt;P&gt;Is the data ingested in Splunk? If yes, how does it look in Splunk (each line is separate events OR one block for each month or anything else)?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 22:05:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Reading-in-a-list-of-username-counting-them-and-create/m-p/342028#M101352</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-06-12T22:05:33Z</dc:date>
    </item>
  </channel>
</rss>

