<?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 How to monitor proxy uploaded data split by users, greater than say 1GB Splunk for Blue Coat ProxySG? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408407#M49821</link>
    <description>&lt;P&gt;Monitoring proxy uploaded data split by users, greater than say 1GB in the last 24hrs and then Alert. &lt;/P&gt;

&lt;P&gt;Not sure how to do this. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="proxy_logs" time="*"  filter_results=OBSERVED protocol="*" url="*"  upload="*" user="*" | 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 25 Jun 2018 12:03:31 GMT</pubDate>
    <dc:creator>SGun</dc:creator>
    <dc:date>2018-06-25T12:03:31Z</dc:date>
    <item>
      <title>How to monitor proxy uploaded data split by users, greater than say 1GB Splunk for Blue Coat ProxySG?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408407#M49821</link>
      <description>&lt;P&gt;Monitoring proxy uploaded data split by users, greater than say 1GB in the last 24hrs and then Alert. &lt;/P&gt;

&lt;P&gt;Not sure how to do this. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="proxy_logs" time="*"  filter_results=OBSERVED protocol="*" url="*"  upload="*" user="*" | 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 25 Jun 2018 12:03:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408407#M49821</guid>
      <dc:creator>SGun</dc:creator>
      <dc:date>2018-06-25T12:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor proxy uploaded data split by users, greater than say 1GB Splunk for Blue Coat ProxySG?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408408#M49822</link>
      <description>&lt;P&gt;Hi @SGun,&lt;/P&gt;

&lt;P&gt;Try this,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="proxy_logs"  &amp;lt;rest of your search&amp;gt; | stats sum(your data size  field/1073741824 ) as total_gb by user | where total_gb &amp;gt; "your threshold value"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Please provide your field name of  data size and also unit if the above does not work&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 13:00:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408408#M49822</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-06-25T13:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor proxy uploaded data split by users, greater than say 1GB Splunk for Blue Coat ProxySG?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408409#M49823</link>
      <description>&lt;P&gt;| stats sum(upload) as total by userID | where total &amp;gt; 10000000 &lt;/P&gt;

&lt;P&gt;Works great. &lt;/P&gt;

&lt;P&gt;So if I wanted to add this output to a table, with other information such as date, time, user, url, upload? &lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 13:41:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408409#M49823</guid>
      <dc:creator>SGun</dc:creator>
      <dc:date>2018-06-25T13:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor proxy uploaded data split by users, greater than say 1GB Splunk for Blue Coat ProxySG?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408410#M49824</link>
      <description>&lt;P&gt;| stats sum(upload) as total by user | where total &amp;gt; 10000000 &lt;/P&gt;

&lt;P&gt;Works great. &lt;/P&gt;

&lt;P&gt;So if I wanted to add this output to a table, with other information such as date, time, user, url, upload? &lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 13:42:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408410#M49824</guid>
      <dc:creator>SGun</dc:creator>
      <dc:date>2018-06-25T13:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor proxy uploaded data split by users, greater than say 1GB Splunk for Blue Coat ProxySG?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408411#M49825</link>
      <description>&lt;P&gt;If you would like to split by other fields , then you can add them to the &lt;CODE&gt;by clause&lt;/CODE&gt; e.g. | stats sum(upload) as total by user,upload . However its not an aggregation over user but all other fields in by clause&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 13:53:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408411#M49825</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-06-25T13:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor proxy uploaded data split by users, greater than say 1GB Splunk for Blue Coat ProxySG?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408412#M49826</link>
      <description>&lt;P&gt;If you would like to split by other fields , then you can add them to the by clause e.g. &lt;CODE&gt;| stats sum(upload) as total by user,upload&lt;/CODE&gt; . However its not an aggregation over user but all other fields in by clause&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 02:07:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408412#M49826</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-06-26T02:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor proxy uploaded data split by users, greater than say 1GB Splunk for Blue Coat ProxySG?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408413#M49827</link>
      <description>&lt;P&gt;index="proxy_logs" filter_results=OBSERVED | stats sum(upload) as total by date,time,userID,url | where total &amp;gt; 10000000 &lt;/P&gt;

&lt;P&gt;Thanks again for your help. &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 20:11:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408413#M49827</guid>
      <dc:creator>SGun</dc:creator>
      <dc:date>2020-09-29T20:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor proxy uploaded data split by users, greater than say 1GB Splunk for Blue Coat ProxySG?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408414#M49828</link>
      <description>&lt;P&gt;I also need to figure out how to aggregate the data or just show the highest upload by the user&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 09:30:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408414#M49828</guid>
      <dc:creator>SGun</dc:creator>
      <dc:date>2018-06-26T09:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to monitor proxy uploaded data split by users, greater than say 1GB Splunk for Blue Coat ProxySG?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408415#M49829</link>
      <description>&lt;P&gt;index="proxy_logs" filter_results=OBSERVED | eval MB=upload/(1024*1024) | stats sum(upload) as total by date,userID,url,MB upload | where total &amp;gt; 10000000 &lt;/P&gt;

&lt;P&gt;does the conversion to MB -  still need to aggregate the user upload&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 20:11:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-monitor-proxy-uploaded-data-split-by-users-greater-than/m-p/408415#M49829</guid>
      <dc:creator>SGun</dc:creator>
      <dc:date>2020-09-29T20:11:55Z</dc:date>
    </item>
  </channel>
</rss>

