]> git.ipfire.org Git - collecty.git/blob - src/collecty/plugins/entropy.py
Add df plugin
[collecty.git] / src / collecty / plugins / entropy.py
1 #!/usr/bin/python3
2 ###############################################################################
3 # #
4 # collecty - A system statistics collection daemon for IPFire #
5 # Copyright (C) 2012 IPFire development team #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 import os
23
24 from . import base
25
26 from ..i18n import _
27
28 ENTROPY_FILE = "/proc/sys/kernel/random/entropy_avail"
29
30 class GraphTemplateEntropy(base.GraphTemplate):
31 name = "entropy"
32
33 @property
34 def rrd_graph(self):
35 _ = self.locale.translate
36
37 return [
38 "DEF:entropy=%(file)s:entropy:AVERAGE",
39 "CDEF:entropytrend=entropy,43200,TREND",
40
41 "LINE3:entropy#ff0000:%-15s" % _("Available entropy"),
42 "VDEF:entrmin=entropy,MINIMUM",
43 "VDEF:entrmax=entropy,MAXIMUM",
44 "VDEF:entravg=entropy,AVERAGE",
45 "GPRINT:entrmax:%12s\:" % _("Maximum") + " %5.0lf",
46 "GPRINT:entrmin:%12s\:" % _("Minimum") + " %5.0lf",
47 "GPRINT:entravg:%12s\:" % _("Average") + " %5.0lf\\n",
48
49 "LINE3:entropytrend#000000",
50 ]
51
52 lower_limit = 0
53
54 @property
55 def graph_title(self):
56 _ = self.locale.translate
57 return _("Available entropy")
58
59 @property
60 def graph_vertical_label(self):
61 _ = self.locale.translate
62 return _("Bit")
63
64
65 class EntropyObject(base.Object):
66 rrd_schema = [
67 "DS:entropy:GAUGE:0:U",
68 ]
69
70 @property
71 def id(self):
72 return "default"
73
74 def collect(self):
75 with open(ENTROPY_FILE) as f:
76 return f.readline().strip()
77
78
79 class EntropyPlugin(base.Plugin):
80 name = "entropy"
81 description = "Entropy Plugin"
82
83 templates = [GraphTemplateEntropy]
84
85 @property
86 def objects(self):
87 if not os.path.exists(ENTROPY_FILE):
88 self.log.debug(_("Entropy kernel interface does not exist"))
89 return []
90
91 return [EntropyObject(self)]