Your message dated Tue, 16 Apr 2013 14:47:41 +0000
with message-id <e1us7ab-0008bw...@franck.debian.org>
and subject line Bug#703479: fixed in munin 2.0.6-4
has caused the Debian Bug report #703479,
regarding munin: Huge munin-graph log with cron graph_strategy
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
703479: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703479
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: munin
Version: 2.0.6-3
Severity: normal
Dear Maintainer,
after upgrading to (not-yet-shipped) Debian/wheezy,
/var/log/munin/munin-graph.log
gets very large (1.7GB in ~20 days here). Upstream seems to have fixed this in
2.0.7 by annotating the new messages as "debug":
http://munin-monitoring.org/ticket/1251
http://munin-monitoring.org/changeset/8ad5dda8f8b5f681a73a5ad3e5348ccb4cc1241d/munin
Would it be possible to include this changeset in wheezy or even ship a more
current
version instead?
Thanks,
C.
-- System Information:
Debian Release: 7.0
APT prefers testing-updates
APT policy: (500, 'testing-updates'), (500, 'testing-proposed-updates'),
(500, 'testing')
Architecture: amd64 (x86_64)
Kernel: Linux 3.2.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages munin depends on:
ii adduser 3.113+nmu3
ii cron 3.0pl1-124
ii libcgi-fast-perl 5.14.2-20
ii libdate-manip-perl 6.32-1
pn libdigest-md5-perl <none>
ii libfile-copy-recursive-perl 0.38-1
ii libhtml-template-perl 2.91-1
ii libio-socket-inet6-perl 2.69-2
ii liblog-log4perl-perl 1.29-1
ii librrds-perl 1.4.7-2
pn libstorable-perl <none>
ii liburi-perl 1.60-1
ii munin-common 2.0.6-3
ii perl [libtime-hires-perl] 5.14.2-20
ii perl-modules 5.14.2-20
ii rrdtool 1.4.7-2
ii ttf-dejavu 2.33-3
Versions of packages munin recommends:
pn munin-doc <none>
ii munin-node 2.0.6-3
Versions of packages munin suggests:
ii libnet-ssleay-perl 1.48-1+b1
ii lighttpd [httpd] 1.4.31-4
ii w3m [www-browser] 0.5.3-8
-- Configuration Files:
/etc/logrotate.d/munin changed:
/var/log/munin/munin-update.log {
monthly
missingok
rotate 1
compress
notifempty
create 640 munin adm
}
/var/log/munin/munin-graph.log {
monthly
missingok
rotate 1
compress
notifempty
create 640 munin adm
}
/var/log/munin/munin-html.log {
monthly
missingok
rotate 1
compress
notifempty
create 640 munin adm
}
/var/log/munin/munin-limits.log {
monthly
missingok
rotate 1
compress
notifempty
create 640 munin adm
}
/var/log/munin/munin-cgi-graph.log {
monthly
missingok
rotate 1
compress
notifempty
#create 640 www-data adm
# see http://munin-monitoring.org/ticket/1152
copytruncate
}
/etc/munin/munin.conf changed:
includedir /etc/munin/munin-conf.d
graph_period minute
[localhost.localdomain]
address 127.0.0.1
use_node_name yes
-- no debconf information
--- /usr/share/perl5/Munin/Master/GraphOld.pm.orig 2013-03-20 07:40:12.400894502 +0100
+++ /usr/share/perl5/Munin/Master/GraphOld.pm 2013-03-20 07:41:20.966645750 +0100
@@ -1348,7 +1348,7 @@
for my $time (keys %times) {
next unless ($draw{$time});
my $picfilename = get_picture_filename($service, $time);
- INFO "[INFO] Looking into drawing $picfilename";
+ DEBUG "[DEBUG] Looking into drawing $picfilename";
(my $picdirname = $picfilename) =~ s/\/[^\/]+$//;
DEBUG "[DEBUG] Picture filename: $picfilename";
@@ -1451,7 +1451,7 @@
if (munin_get_bool($service, "graph_sums", 0)) {
foreach my $time (keys %sumtimes) {
my $picfilename = get_picture_filename($service, $time, 1);
- INFO "Looking into drawing $picfilename";
+ DEBUG "Looking into drawing $picfilename";
(my $picdirname = $picfilename) =~ s/\/[^\/]+$//;
next unless ($draw{"sum" . $time});
my @rrd_sum;
--- /usr/share/perl5/Munin/Master/Logger.pm.orig 2013-03-20 07:50:07.377381038 +0100
+++ /usr/share/perl5/Munin/Master/Logger.pm 2013-03-20 07:51:37.954410331 +0100
@@ -90,7 +90,7 @@
$logopened = 1;
}
- get_logger('')->info("Opened log file");
+ get_logger('')->debug("Opened log file");
# Get perl warnings into the log files
$SIG{__WARN__} = \&_warn_catcher;
@@ -117,7 +117,7 @@
$logopened = 1;
}
- get_logger('')->info("Opened log file");
+ get_logger('')->debug("Opened log file");
# Get perl warnings into the log files
$SIG{__WARN__} = \&_warn_catcher;
--- /usr/share/munin/munin-graph.orig 2013-03-20 07:52:54.179910413 +0100
+++ /usr/share/munin/munin-graph 2013-03-20 07:53:53.469965879 +0100
@@ -84,7 +84,7 @@
my $graph_fh = new IO::File($config->{dbdir} . "/graphs");
while (my $path = <$graph_fh>) {
my $pinpoint = undef;
- INFO "Request path is $path";
+ DEBUG "Request path is $path";
# The full URL looks like this:
# Case 1:
@@ -126,7 +126,7 @@
my ($dom, $host, $serv, $scale) =
$path =~ m#^/(.*)/([^/]+)/(\w+)-([\w=,]+)\.png#; ## avoid bug in vim
- INFO "asked for ($dom, $host, $serv, $scale)";
+ DEBUG "asked for ($dom, $host, $serv, $scale)";
if ($scale =~ /pinpoint=(\d+),(\d+)/) {
$pinpoint = [ $1, $2, ];
@@ -159,11 +159,11 @@
}
# Now send it: headers
- INFO "X-Munin-Request: $nb_request/$nb_request_max";
+ DEBUG "X-Munin-Request: $nb_request/$nb_request_max";
my $headers = get_headers_for_file($filename, $graph_ttl);
foreach my $header_name (keys %$headers) {
- INFO "$header_name: $headers->{$header_name}";
+ DEBUG "$header_name: $headers->{$header_name}";
}
# ... and graph data
--- End Message ---
--- Begin Message ---
Source: munin
Source-Version: 2.0.6-4
We believe that the bug you reported is fixed in the latest version of
munin, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 703...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Holger Levsen <hol...@debian.org> (supplier of updated munin package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Tue, 16 Apr 2013 15:48:03 +0200
Source: munin
Binary: munin-node munin-plugins-core munin-plugins-extra munin-plugins-java
munin munin-common munin-async munin-doc
Architecture: source all
Version: 2.0.6-4
Distribution: unstable
Urgency: medium
Maintainer: Munin Debian Maintainers <packag...@munin-monitoring.org>
Changed-By: Holger Levsen <hol...@debian.org>
Description:
munin - network-wide graphing framework (grapher/gatherer)
munin-async - network-wide graphing framework (async master/client)
munin-common - network-wide graphing framework (common)
munin-doc - network-wide graphing framework (documentation)
munin-node - network-wide graphing framework (node)
munin-plugins-core - network-wide graphing framework (plugins for node)
munin-plugins-extra - network-wide graphing framework (user contributed
plugins for nod
munin-plugins-java - network-wide graphing framework (java plugins for node)
Closes: 699803 703479
Changes:
munin (2.0.6-4) unstable; urgency=medium
.
* Master/Node.pm: cherry-pick 71d0a86 from 2.0.12 to fix TLS enabled
updates. (Closes: #699803)
* several master components: turn INFO messages into DEBUG messages to avoid
logfiles reaching gigabyte sizes in a few days. The cherries picked were
8ad5dda (from 2.0.7) and 4372cdf (from 2.0.12). (Closes: #703479)
Checksums-Sha1:
4e1624fc5a73f9e00b3d514b977cf0610ca8e256 2355 munin_2.0.6-4.dsc
8011286893e7a05d9a082ee80bf37b1109035146 52211 munin_2.0.6-4.diff.gz
173a08b51aad02059316910711d0eb014324cb2f 129330 munin-node_2.0.6-4_all.deb
a34f587fad2b5c42627e51b298786a9751c97445 304864
munin-plugins-core_2.0.6-4_all.deb
5247406d79f9b126fef303540ed41c4c6cca4a98 155486
munin-plugins-extra_2.0.6-4_all.deb
af2c2bf1c5cb9b7a04f065f76853fc5a9988a457 148120
munin-plugins-java_2.0.6-4_all.deb
4a03035ff532cab91d3f63e380ad4a6785f63c97 202488 munin_2.0.6-4_all.deb
9a616ed3929d74aaa70505ae9ff71a061a2a89c1 95064 munin-common_2.0.6-4_all.deb
3ebfaa575a5cd22fd712cac994ff8f6447b0b4d3 86592 munin-async_2.0.6-4_all.deb
78bc7bb83616c1996bb152ae20b7592498278603 213382 munin-doc_2.0.6-4_all.deb
Checksums-Sha256:
10df877ad47ddd628a1feb35769dcc246c32fafc76bb0bab00eaf3262c3ac1d7 2355
munin_2.0.6-4.dsc
89df5a4da8b6f31d6793273b7cc833ab55057c9da9ab491aec9cb2127171df14 52211
munin_2.0.6-4.diff.gz
06048b2db6fd5361cc89cb7d50ca9c95ff506f9637e834c54df9e3c9cf04257b 129330
munin-node_2.0.6-4_all.deb
3c7bd75e107f023b86acb0096974422b6bfc53af1672adc9d1a2638ba01c5b16 304864
munin-plugins-core_2.0.6-4_all.deb
a620d6f77b327e6d60ac42a4e698659fa5c1429adef797218ee6dbdd719917c8 155486
munin-plugins-extra_2.0.6-4_all.deb
203a811d7ad00c9e44bcdc28420b75425524b0e11bd34c2c66f12d2eb696a29d 148120
munin-plugins-java_2.0.6-4_all.deb
f80a37a54c5c5e9e17e1648023e075b1bac2b4e426711fe2334ac717ac6a9098 202488
munin_2.0.6-4_all.deb
9b04460def2af8940006e26780ea26274d18a9a75bc034cb7db08c91df2e7984 95064
munin-common_2.0.6-4_all.deb
6ba40f018a98ecc87108cbfb67a2694deaf54b93bae42cb2734fd09489abbf62 86592
munin-async_2.0.6-4_all.deb
35c83d1a06386272cd5552bbb304aa9a088e3ab5e2ada0d3291ae3dae80ff613 213382
munin-doc_2.0.6-4_all.deb
Files:
267a7fe5827d1ba53d312141d0c55fc6 2355 net optional munin_2.0.6-4.dsc
fa4ac294473dec8e9177f0364540e92f 52211 net optional munin_2.0.6-4.diff.gz
c582ca76f64bd5deec4fefb3a86f9c9b 129330 net optional munin-node_2.0.6-4_all.deb
43b89fba457c8d42e46c071afbfa0f71 304864 net optional
munin-plugins-core_2.0.6-4_all.deb
555983075b3334afe020f30a1b60b5e7 155486 net optional
munin-plugins-extra_2.0.6-4_all.deb
85ec843c7f040a8a76f5e468c70f6bb9 148120 net optional
munin-plugins-java_2.0.6-4_all.deb
18187f801b5177a954efcdf686019894 202488 net optional munin_2.0.6-4_all.deb
3675301171e3698328b0a0e70eec1b38 95064 net optional
munin-common_2.0.6-4_all.deb
053a35d1d29d75c322def7a79c8cd324 86592 net optional munin-async_2.0.6-4_all.deb
dc6e815833df47796169016bf0e0c247 213382 doc optional munin-doc_2.0.6-4_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIVAwUBUW1fhwkauFYGmqocAQiG5Q//d19e/ke9a9jDlIbfCDRjVNFsE6yrWYKy
OIKLe9EoamxUMVH+a8q1mXsLFyTJ2H61AEM+srfby1b/X078lwbLagbpvTZLPKQR
LEP3FMyYAXRzfV0JRJKx/8FFYiJOdFHokYv3MjMrdE7D3S+1pd+cSp+h8uA91Ivx
L8nFwl4OAqfZeU5x3K6pzDbh41LA1sNRqL22PEFMwE/3N8NbaAD6GgoSMk/qNlLk
MoL4x+VfuypZ2ns+APURALZ7hcNvxkbkEjKFkoEojNzmAdGBmx79jlOF+2J1Q05g
ChJJKQcu0O/YH6oqdV0pWeTP9FwCx+F38aF6bAHpB2euW+WRuaVFqWQQgLrLm/Qq
scmcKf2SMrniPziY/OzivaoF8BdqwuC0HQZn6x0H/XjlS61y7gSqd8QC7/uXdVA+
P9Ch5c71YnspjgKIQWA4XOs0H3CDMC/FkoHXIpn1iTySOdqPpnPV/QlYPYK0lTAJ
f+uVuSkayY+xlpPLPLLCJ5gNf6uFFgFQzwDBSQKipQDLncFh3PZw2Y+hA5jQwjb+
Bp7wrc4yXBPb+zZ9uOmXQdJzqQyotLKip8cZyY/04p0Kko7R94SfuVMBmuvHmzj3
2aOv7juVVSfxKzxElfVQgbX5GaKOEpSwoUc09Cf6M+BuXxJKcjAll+W4Q2zDbZ/V
lHLZ9iFI8Vg=
=CsXP
-----END PGP SIGNATURE-----
--- End Message ---