<?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: show send and receive from internet to my ftp server in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380974#M173052</link>
    <description>&lt;P&gt;You are using the &lt;CODE&gt;count&lt;/CODE&gt; command here, hence it is showing you counts. If you want to have the sum of the transferred data, use &lt;CODE&gt;sum&lt;/CODE&gt; instead...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="fw" policyid=143 |eval send=round((bytes_out)/131072,2) |eval receive=round((bytes_in)/131072,2) |search send &amp;gt; 0 |timechart span=1m sum(send) as sent, sum(receive) as received
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 13 Feb 2019 10:31:31 GMT</pubDate>
    <dc:creator>DMohn</dc:creator>
    <dc:date>2019-02-13T10:31:31Z</dc:date>
    <item>
      <title>show send and receive from internet to my ftp server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380973#M173051</link>
      <description>&lt;P&gt;i want to  show the how much  user send and receive  from the  internet to my ftp server,is my search command right?&lt;BR /&gt;
index="fw" policyid=143 |eval send=round((bytes_out)/131072,2) |eval receive=round((bytes_in)/131072,2) |search send &amp;gt; 0 |timechart span=1m count by send  receive&lt;BR /&gt;
 it shows the count of the send but i don't want to show send  based on count&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:13:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380973#M173051</guid>
      <dc:creator>khanlarloo</dc:creator>
      <dc:date>2020-09-29T23:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: show send and receive from internet to my ftp server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380974#M173052</link>
      <description>&lt;P&gt;You are using the &lt;CODE&gt;count&lt;/CODE&gt; command here, hence it is showing you counts. If you want to have the sum of the transferred data, use &lt;CODE&gt;sum&lt;/CODE&gt; instead...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="fw" policyid=143 |eval send=round((bytes_out)/131072,2) |eval receive=round((bytes_in)/131072,2) |search send &amp;gt; 0 |timechart span=1m sum(send) as sent, sum(receive) as received
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Feb 2019 10:31:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380974#M173052</guid>
      <dc:creator>DMohn</dc:creator>
      <dc:date>2019-02-13T10:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: show send and receive from internet to my ftp server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380975#M173053</link>
      <description>&lt;P&gt;it doesn't show the correct bandwidth&lt;/P&gt;</description>
      <pubDate>Sat, 16 Feb 2019 07:54:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380975#M173053</guid>
      <dc:creator>khanlarloo</dc:creator>
      <dc:date>2019-02-16T07:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: show send and receive from internet to my ftp server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380976#M173054</link>
      <description>&lt;P&gt;Can you post some example log lines, this would make it easier to help...&lt;/P&gt;</description>
      <pubDate>Sat, 16 Feb 2019 08:30:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380976#M173054</guid>
      <dc:creator>DMohn</dc:creator>
      <dc:date>2019-02-16T08:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: show send and receive from internet to my ftp server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380977#M173055</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="fw" policyid=143
| timechart span=1m sum(bytes_out) AS sent sum(bytes_in) AS received BY user
| foreach sent* received* [ eval &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt; = round('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;'/131072, 2) ]
|eval send=round((bytes_out)/131072,2) |eval receive=round((bytes_in)/131072,2)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 Feb 2019 23:43:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/show-send-and-receive-from-internet-to-my-ftp-server/m-p/380977#M173055</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-16T23:43:44Z</dc:date>
    </item>
  </channel>
</rss>

