2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

[apache_logparser] remove unused 'type' setting

the manual common/combined type detection was replaced with an
automatism earlier
This commit is contained in:
Lars Kruse 2016-11-25 02:23:19 +01:00
parent 89b2f76701
commit 3d3f5179fa

View File

@ -27,9 +27,6 @@ $statefile file to save last log position for tail
$nsec tail and write to shared mem every n seconds
$debug dump tallied data every n seconds, print every log line parsed
$scan_interval rescan for new log files every n minutes
$type log file type:
common: CLF + vhost + time + (other fields)
combined: combined + time + (other fields)
=cut
# config
@ -38,7 +35,6 @@ my $files = "*access_log";
my $site = "(.*)-access_log";
my $statefile = "/tmp/logstate";
`touch $statefile` unless (-f $statefile);
local $type="combined";
local $nsec=7;
local $debug=0;