<?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: Does Splunk index gzip files? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9530#M96</link>
    <description>&lt;P&gt;Here's more details about how that works:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitorfilesanddirectories#How_Splunk_Enterprise_monitors_archived_files"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitorfilesanddirectories#How_Splunk_Enterprise_monitors_archived_files&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 18 Dec 2015 19:27:50 GMT</pubDate>
    <dc:creator>hurricanelabs</dc:creator>
    <dc:date>2015-12-18T19:27:50Z</dc:date>
    <item>
      <title>Does Splunk index gzip files?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9526#M92</link>
      <description>&lt;P&gt;I'd like to index a directory of 50,000 gzip files.  The files range in size from 1 KB to 5 MB.  Can Splunk monitor these files without first unpacking the gzips?&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jan 2010 01:47:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9526#M92</guid>
      <dc:creator>hulahoop</dc:creator>
      <dc:date>2010-01-30T01:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Does Splunk index gzip files?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9527#M93</link>
      <description>&lt;P&gt;The good news is "YES, Splunk can index gzip files as is!"  The bad news is, Splunk will monitor these files one at a time, instead of in parallel.  Because it is not possible to predict the uncompressed size of a gzip file, Splunk processes these files in sequence for better control of disk allocation.  With respect to performance, this is not ideal for handling 50k files so please consider uncompresing them before having Splunk monitor them to take advantage of Splunk's multi-threading file monitoring capabilities.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jan 2010 01:52:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9527#M93</guid>
      <dc:creator>hulahoop</dc:creator>
      <dc:date>2010-01-30T01:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Does Splunk index gzip files?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9528#M94</link>
      <description>&lt;P&gt;I think we're actually a bit slower than uncompressing the files first (unsure of details) but it's not far off.  Mostly uncompressing that much data with the zlib algorithm just takes a lot of CPU.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Apr 2010 15:12:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9528#M94</guid>
      <dc:creator>jrodman</dc:creator>
      <dc:date>2010-04-17T15:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Does Splunk index gzip files?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9529#M95</link>
      <description>&lt;P&gt;So, what if you don't want it to read a compressed file?  Can you compress using a file extension that will prevent Splunk  from attempting to index the file... e.g. rotated and compressed log files?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2015 17:38:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9529#M95</guid>
      <dc:creator>paulmarino</dc:creator>
      <dc:date>2015-08-25T17:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Does Splunk index gzip files?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9530#M96</link>
      <description>&lt;P&gt;Here's more details about how that works:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitorfilesanddirectories#How_Splunk_Enterprise_monitors_archived_files"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitorfilesanddirectories#How_Splunk_Enterprise_monitors_archived_files&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2015 19:27:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9530#M96</guid>
      <dc:creator>hurricanelabs</dc:creator>
      <dc:date>2015-12-18T19:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Does Splunk index gzip files?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9531#M97</link>
      <description>&lt;P&gt;You can blacklist compressed files in inputs.conf so that they will be ignored:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[monitor:///var/log]
blacklist=(tgz$|zip$)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;will ignore all files in /var/log that end with "tgz" or "zip"&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 21:34:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Does-Splunk-index-gzip-files/m-p/9531#M97</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2016-08-10T21:34:22Z</dc:date>
    </item>
  </channel>
</rss>

