<?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: Display the volume of connections per day of the week to a single IP to show which days are busiest in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588225#M204852</link>
    <description>&lt;P&gt;Thanks for increasing my knowledge on this, sincerely appreciated.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Mar 2022 12:35:55 GMT</pubDate>
    <dc:creator>Gurv_Bahad</dc:creator>
    <dc:date>2022-03-09T12:35:55Z</dc:date>
    <item>
      <title>How to display the volume of connections per day of the week to a single IP to show which days are busiest?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/587996#M204785</link>
      <description>&lt;P&gt;index=Network dest_ip=xx.xx.xx.xx action=allowed&lt;/P&gt;
&lt;P&gt;Trying to list total allowed connections to destination IP by day, regardless of source to try and determine the volume of connections per day of the week and show which days are busiest and also if possible to determine when during the day do the number of connections peak.&lt;/P&gt;
&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 22:09:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/587996#M204785</guid>
      <dc:creator>Gurv_Bahad</dc:creator>
      <dc:date>2022-03-08T22:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Display the volume of connections per day of the week to a single IP to show which days are busiest</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588002#M204786</link>
      <description>&lt;P&gt;What did you try so far?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 11:27:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588002#M204786</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2022-03-08T11:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Display the volume of connections per day of the week to a single IP to show which days are busiest</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588011#M204789</link>
      <description>efforts so far include; mysearch| timechart span=1d count by src_ip limit=0 Which displays a grid of IP's against days. Right now, just total connections per day are needed. Peaks during the day itself would be nice. Trying a few suggestions on similar questions posted but none produce the desired results</description>
      <pubDate>Tue, 08 Mar 2022 12:12:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588011#M204789</guid>
      <dc:creator>Gurv_Bahad</dc:creator>
      <dc:date>2022-03-08T12:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Display the volume of connections per day of the week to a single IP to show which days are busiest</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588037#M204797</link>
      <description>&lt;P&gt;Well, there are two approaches to prepare this data, one is pretty as you wrote it:&lt;/P&gt;&lt;PRE&gt;&amp;lt;yoursearch&amp;gt; | timechart span=1d count by src_ip limit=0&lt;/PRE&gt;&lt;P&gt;The other one is done a bit differently&lt;/P&gt;&lt;PRE&gt;&amp;lt;yoursearch&amp;gt; | bin span=1d | stats count by src_ip _time&lt;/PRE&gt;&lt;P&gt;They should produce the same results, just differently "formatted" - first one, as you noticed, will produce a grid of count by day/src_ip. The latter will show count by pair "day/src_ip".&lt;/P&gt;&lt;P&gt;You can transform one to another with untable/xyseries.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 14:37:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588037#M204797</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2022-03-08T14:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Display the volume of connections per day of the week to a single IP to show which days are busiest</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588214#M204846</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thanks for replying Rick,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Running the following:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;index=Network dest_ip=xx.xx.xx.xx. action=allowed&lt;BR /&gt;| bin span=1d | stats count by src_ip _time&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Returns the following error:&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Error in 'bin' command: You must specify a field to discretize.&lt;BR /&gt;&lt;BR /&gt;Not looking to list the source IP's, just need counts per day so have tried using:&lt;BR /&gt;&lt;BR /&gt;index=Network dest_ip=xx.xx.xx.xx. action=allowed&amp;nbsp;| bin _time span=1d | stats count by _time&lt;BR /&gt;&lt;BR /&gt;Reading this as&amp;nbsp;&lt;BR /&gt;when the condition (index=Network dest_ip=xx.xx.xx.xx. action=allowed) has been met, break up time into 1 day Bins (bin _time span=1d ) and list total count of each time this condition is met for each Bin which is one day.&lt;BR /&gt;Am I on the right track here?&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 11:15:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588214#M204846</guid>
      <dc:creator>Gurv_Bahad</dc:creator>
      <dc:date>2022-03-09T11:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Display the volume of connections per day of the week to a single IP to show which days are busiest</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588221#M204849</link>
      <description>&lt;P&gt;Sorry, of course I ommited the field with bin command (I often write the responses while walking my dog, without access to the live splunk environment :D)&lt;/P&gt;&lt;P&gt;And yes, your interpretation is quite correct. If there is no command, there's an implicit search so it could be written as well as&lt;/P&gt;&lt;PRE&gt;search index=Network dest_ip=xx.xx.xx.xx. action=allowed | bin _time span=1d | stats count by _time&lt;/PRE&gt;&lt;P&gt;And it means "search for events fulfilling given conditions", then "split it into day-sized bins/buckets" (the bin command does that by "adjusting" the _time field to the earliest possible time of this bin. So if you have span=1d, all your events from that day will be aligned to the midnight at the day's beginning.&lt;/P&gt;&lt;P&gt;As the last step of the pipeline you have "calculate count of events for each unique value of _time field". Since we did the binning in the previous step, we have all events "groupped" at the beginning of the day so we have just one _time value per whole day.&lt;/P&gt;&lt;P&gt;Since you're not splitting the data by any other fields, you can get pretty much the same results by&lt;/P&gt;&lt;PRE&gt;search index=Network dest_ip=xx.xx.xx.xx. action=allowed | timechart span=1d count&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 12:02:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588221#M204849</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2022-03-09T12:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Display the volume of connections per day of the week to a single IP to show which days are busiest</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588225#M204852</link>
      <description>&lt;P&gt;Thanks for increasing my knowledge on this, sincerely appreciated.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 12:35:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-display-the-volume-of-connections-per-day-of-the-week-to/m-p/588225#M204852</guid>
      <dc:creator>Gurv_Bahad</dc:creator>
      <dc:date>2022-03-09T12:35:55Z</dc:date>
    </item>
  </channel>
</rss>

