]> git.ipfire.org Git - collecty.git/blob - src/collecty/plugins/interrupts.py
20ff038c06c1ef0dfb52e65cb1bbef10f4a982d0
[collecty.git] / src / collecty / plugins / interrupts.py
1 #!/usr/bin/python3
2 ###############################################################################
3 # #
4 # collecty - A system statistics collection daemon for IPFire #
5 # Copyright (C) 2015 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 re
23
24 from . import base
25
26 from ..i18n import _
27
28 class GraphTemplateSystemInterrupts(base.GraphTemplate):
29 name = "system-interrupts"
30
31 @property
32 def rrd_graph(self):
33 _ = self.locale.translate
34
35 return [
36 "DEF:intr=%(file)s:intr:AVERAGE",
37
38 "AREA:intr#90EE90:%-15s" % _("System Interrupts"),
39 "VDEF:intrmax=intr,MAXIMUM",
40 "VDEF:intrmin=intr,MINIMUM",
41 "VDEF:intravg=intr,AVERAGE",
42 "GPRINT:intrmax:%12s\:" % _("Maximum") + " %6.2lf" ,
43 "GPRINT:intrmin:%12s\:" % _("Minimum") + " %6.2lf" ,
44 "GPRINT:intravg:%12s\:" % _("Average") + " %6.2lf\\n",
45 ]
46
47 lower_limit = 0
48
49 @property
50 def graph_title(self):
51 _ = self.locale.translate
52 return _("System Interrupts")
53
54 @property
55 def graph_vertical_label(self):
56 _ = self.locale.translate
57 return _("System Interrupts/s")
58
59
60 class SystemInterruptsObject(base.Object):
61 rrd_schema = [
62 "DS:intr:DERIVE:0:U",
63 ]
64
65 @property
66 def id(self):
67 return "default"
68
69 def collect(self):
70 expr = re.compile(r"^intr (\d+)")
71
72 with open("/proc/stat") as f:
73 for line in f.readlines():
74 m = re.match(expr, line)
75 if m:
76 return m.group(1)
77
78
79 class SystemInterruptsPlugin(base.Plugin):
80 name = "system-interrupts"
81 description = "System Interrupts Plugin"
82
83 templates = [GraphTemplateSystemInterrupts]
84
85 @property
86 def objects(self):
87 yield SystemInterruptsObject(self)