<?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: Volume of SYSLOG traffic coming into splunk? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28755#M4945</link>
    <description>&lt;P&gt;BTW - Thank you for your help with this.  It's greatly appreciated.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Aug 2010 10:46:35 GMT</pubDate>
    <dc:creator>leonardw</dc:creator>
    <dc:date>2010-08-12T10:46:35Z</dc:date>
    <item>
      <title>Volume of SYSLOG traffic coming into splunk?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28751#M4941</link>
      <description>&lt;P&gt;Does anyone know how to determine the volume of SYSLOG traffic coming into Splunk over a 30, 60, and 90 day period?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2010 04:55:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28751#M4941</guid>
      <dc:creator>leonardw</dc:creator>
      <dc:date>2010-08-12T04:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Volume of SYSLOG traffic coming into splunk?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28752#M4942</link>
      <description>&lt;P&gt;Something like this will give you what you need.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal (source=*/metrics.log* OR source=*\\metrics.log*) group=per_sourcetype_thruput series=syslog | timechart sum(kb) by series
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then, just change your timeframe to 30, 60 or 90 days appropriately.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2010 05:09:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28752#M4942</guid>
      <dc:creator>Lamar</dc:creator>
      <dc:date>2010-08-12T05:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Volume of SYSLOG traffic coming into splunk?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28753#M4943</link>
      <description>&lt;P&gt;If syslog is one of the top ten sourcetypes or sources, then you can use the metrics log search below:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*metrics.log* per_sourcetype_thruput series=syslog | eval gb=kb/1024/1024 | stats sum(gb) as Total
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you want to see a charted breakdown, you can substitute the timechart command for stats:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | timechart span=1d sum(gb) as Total | addtotals
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;For the above searches, use the TimeRange picker to select the 30, 60, or 90 day duration.   If syslog is not in the top ten sourcetypes, you'll have to do a somewhat expensive query that measures the raw size of the events.  So something like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=syslog | eval size=len(_raw) | stats sum(size)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Aug 2010 06:47:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28753#M4943</guid>
      <dc:creator>Simeon</dc:creator>
      <dc:date>2010-08-12T06:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Volume of SYSLOG traffic coming into splunk?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28754#M4944</link>
      <description>&lt;P&gt;The above query works; however anything after 30 days there is no data showing up.  This system has been in production for several months.  Could it be with logs being rotated? If so, how to proceed?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2010 10:45:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28754#M4944</guid>
      <dc:creator>leonardw</dc:creator>
      <dc:date>2010-08-12T10:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Volume of SYSLOG traffic coming into splunk?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28755#M4945</link>
      <description>&lt;P&gt;BTW - Thank you for your help with this.  It's greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2010 10:46:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28755#M4945</guid>
      <dc:creator>leonardw</dc:creator>
      <dc:date>2010-08-12T10:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Volume of SYSLOG traffic coming into splunk?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28756#M4946</link>
      <description>&lt;P&gt;This might also help.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://www.splunkbase.com/apps/All/4.x/App/app:Splunk+License+Usage" rel="nofollow"&gt;http://www.splunkbase.com/apps/All/4.x/App/app:Splunk+License+Usage&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You can tweak the xml to your needs.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2010 21:33:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28756#M4946</guid>
      <dc:creator>BunnyHop</dc:creator>
      <dc:date>2010-08-12T21:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Volume of SYSLOG traffic coming into splunk?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28757#M4947</link>
      <description>&lt;P&gt;Sadly, I believe the default setting for _internal is 28 days or 2419200 seconds.  You can raise that setting 'frozenTimePeriodInSecs' to whatever fits for you so that you can get a greater field of view.&lt;/P&gt;

&lt;P&gt;If there is no coldToFrozenScript set, it simply erases the data.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Aug 2010 00:34:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Volume-of-SYSLOG-traffic-coming-into-splunk/m-p/28757#M4947</guid>
      <dc:creator>Lamar</dc:creator>
      <dc:date>2010-08-14T00:34:40Z</dc:date>
    </item>
  </channel>
</rss>

