<?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 Windows Account Activity Reporting in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Windows-Account-Activity-Reporting/m-p/169605#M34280</link>
    <description>&lt;P&gt;I'm looking at creating a dashboard where I can generate standardized reports based on behaviors.  To get started, I just want to provide a list of login activity by server to administrators to validate lookup lists as valid.&lt;/P&gt;

&lt;P&gt;What I'm trying to draw in a table is similar to this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Account Name:        |  Event Codes      |    Logon Type   |   Sparklines  |   Peak  Count   |   Peak Time
Joe Smith            |  4624             |   3, 5, 6       |   4624 Spark  |  4624 Peak      |  Time of 4624 peak
                     |  4625             |   0             |   4625 Spark  |  4625 Peak      |  Time of 4625 peak
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Right now I've got the base search figured out:&lt;/P&gt;

&lt;P&gt;sourcetype=WinEventLog:Security host=HostNameHere |stats values(EventCode) values(Logon_Type) sparkline(count(Account_Name)) count(Account_Name) by Account_Name | sort Account_Name&lt;/P&gt;

&lt;P&gt;&lt;B&gt;1st problem&lt;/B&gt;:&lt;BR /&gt;
what I can't get added correctly is peak measurements.  I've tried some stats functions like max(count) or eval max=count but they end up null.&lt;BR /&gt;
&lt;B&gt;Question&lt;/B&gt;:  How can I get this to correctly evaluate the peak count &amp;amp; time that is shown in the sparkline?&lt;/P&gt;

&lt;P&gt;&lt;B&gt;2nd problem&lt;/B&gt;:&lt;BR /&gt;
I can get the eventCodes to all stay in a single cell related to the account name, but I can't get the rest to obey the same principle.&lt;BR /&gt;
&lt;B&gt;Question&lt;/B&gt;:  Is it even possible to format the table as I'm attempting to do?  I can't seem to find via Google anyone that has tried to get the values of fields to actually line up with eachother.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 18:32:57 GMT</pubDate>
    <dc:creator>ltrand</dc:creator>
    <dc:date>2020-09-28T18:32:57Z</dc:date>
    <item>
      <title>Windows Account Activity Reporting</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Windows-Account-Activity-Reporting/m-p/169605#M34280</link>
      <description>&lt;P&gt;I'm looking at creating a dashboard where I can generate standardized reports based on behaviors.  To get started, I just want to provide a list of login activity by server to administrators to validate lookup lists as valid.&lt;/P&gt;

&lt;P&gt;What I'm trying to draw in a table is similar to this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Account Name:        |  Event Codes      |    Logon Type   |   Sparklines  |   Peak  Count   |   Peak Time
Joe Smith            |  4624             |   3, 5, 6       |   4624 Spark  |  4624 Peak      |  Time of 4624 peak
                     |  4625             |   0             |   4625 Spark  |  4625 Peak      |  Time of 4625 peak
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Right now I've got the base search figured out:&lt;/P&gt;

&lt;P&gt;sourcetype=WinEventLog:Security host=HostNameHere |stats values(EventCode) values(Logon_Type) sparkline(count(Account_Name)) count(Account_Name) by Account_Name | sort Account_Name&lt;/P&gt;

&lt;P&gt;&lt;B&gt;1st problem&lt;/B&gt;:&lt;BR /&gt;
what I can't get added correctly is peak measurements.  I've tried some stats functions like max(count) or eval max=count but they end up null.&lt;BR /&gt;
&lt;B&gt;Question&lt;/B&gt;:  How can I get this to correctly evaluate the peak count &amp;amp; time that is shown in the sparkline?&lt;/P&gt;

&lt;P&gt;&lt;B&gt;2nd problem&lt;/B&gt;:&lt;BR /&gt;
I can get the eventCodes to all stay in a single cell related to the account name, but I can't get the rest to obey the same principle.&lt;BR /&gt;
&lt;B&gt;Question&lt;/B&gt;:  Is it even possible to format the table as I'm attempting to do?  I can't seem to find via Google anyone that has tried to get the values of fields to actually line up with eachother.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 18:32:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Windows-Account-Activity-Reporting/m-p/169605#M34280</guid>
      <dc:creator>ltrand</dc:creator>
      <dc:date>2020-09-28T18:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Account Activity Reporting</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Windows-Account-Activity-Reporting/m-p/169606#M34281</link>
      <description>&lt;P&gt;1st problem:What is this?&lt;/P&gt;

&lt;P&gt;Sourcetype=WinEventLog:Security host=HostNameHere |stats values(EventCode) as Event_Codes values(Logon_Type) as  Logon_Type sparkline by Account_Name | join Account_Name [search Sourcetype=WinEventLog:Security host=HostNameHere | bucket _time span=1m|stats count as peak_count by _time,Account_Name |dedup Account_Name sortby -peak_count |rename _time as peak_time]&lt;/P&gt;

&lt;P&gt;Notes: peak will only display only items first.&lt;/P&gt;

&lt;P&gt;2nd problem:I'm sorry. Problems I do not know well. Can you explain a little more detail?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 18:30:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Windows-Account-Activity-Reporting/m-p/169606#M34281</guid>
      <dc:creator>HiroshiSatoh</dc:creator>
      <dc:date>2020-09-28T18:30:10Z</dc:date>
    </item>
  </channel>
</rss>

