forked from nicolargo/glances
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions.py
92 lines (76 loc) · 2.95 KB
/
actions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#
# This file is part of Glances.
#
# SPDX-FileCopyrightText: 2022 Nicolas Hennion <nicolas@nicolargo.com>
#
# SPDX-License-Identifier: LGPL-3.0-only
#
"""Manage on alert actions."""
from glances.logger import logger
from glances.secure import secure_popen
from glances.timer import Timer
try:
import chevron
except ImportError:
logger.debug("Chevron library not found (action scripts won't work)")
chevron_tag = False
else:
chevron_tag = True
class GlancesActions:
"""This class manage action if an alert is reached."""
def __init__(self, args=None):
"""Init GlancesActions class."""
# Dict with the criticality status
# - key: stat_name
# - value: criticality
# Goal: avoid to execute the same command twice
self.status = {}
# Add a timer to avoid any trigger when Glances is started (issue#732)
# Action can be triggered after refresh * 2 seconds
if hasattr(args, 'time'):
self.start_timer = Timer(args.time * 2)
else:
self.start_timer = Timer(3)
def get(self, stat_name):
"""Get the stat_name criticality."""
try:
return self.status[stat_name]
except KeyError:
return None
def set(self, stat_name, criticality):
"""Set the stat_name to criticality."""
self.status[stat_name] = criticality
def run(self, stat_name, criticality, commands, repeat, mustache_dict=None):
"""Run the commands (in background).
:param stat_name: plugin_name (+ header)
:param criticality: criticality of the trigger
:param commands: a list of command line with optional {{mustache}}
:param repeat: If True, then repeat the action
:param mustache_dict: Plugin stats (can be use within {{mustache}})
:return: True if the commands have been ran.
"""
if (self.get(stat_name) == criticality and not repeat) or not self.start_timer.finished():
# Action already executed => Exit
return False
logger.debug(
"{} action {} for {} ({}) with stats {}".format(
"Repeat" if repeat else "Run", commands, stat_name, criticality, mustache_dict
)
)
# Run all actions in background
for cmd in commands:
# Replace {{arg}} by the dict one (Thk to {Mustache})
if chevron_tag:
cmd_full = chevron.render(cmd, mustache_dict)
else:
cmd_full = cmd
# Execute the action
logger.info(f"Action triggered for {stat_name} ({criticality}): {cmd_full}")
try:
ret = secure_popen(cmd_full)
except OSError as e:
logger.error(f"Action error for {stat_name} ({criticality}): {e}")
else:
logger.debug(f"Action result for {stat_name} ({criticality}): {ret}")
self.set(stat_name, criticality)
return True