From e5a11dfd1c07ea232a613f094d32343288e87b20 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 14 Dec 2015 01:19:00 +0100 Subject: [PATCH] entropy: Remove trend line This does not add any useful information Signed-off-by: Michael Tremer --- src/collecty/plugins/entropy.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/collecty/plugins/entropy.py b/src/collecty/plugins/entropy.py index 7dcb418..0fae415 100644 --- a/src/collecty/plugins/entropy.py +++ b/src/collecty/plugins/entropy.py @@ -36,7 +36,6 @@ class GraphTemplateEntropy(base.GraphTemplate): return [ "DEF:entropy=%(file)s:entropy:AVERAGE", - "CDEF:entropytrend=entropy,43200,TREND", "LINE3:entropy#ff0000:%-15s" % _("Available entropy"), "VDEF:entrmin=entropy,MINIMUM", @@ -45,8 +44,6 @@ class GraphTemplateEntropy(base.GraphTemplate): "GPRINT:entrmax:%12s\:" % _("Maximum") + " %5.0lf", "GPRINT:entrmin:%12s\:" % _("Minimum") + " %5.0lf", "GPRINT:entravg:%12s\:" % _("Average") + " %5.0lf\\n", - - "LINE3:entropytrend#000000", ] lower_limit = 0 -- 2.47.3