summaryrefslogtreecommitdiffstats
path: root/glances/amps
diff options
context:
space:
mode:
authornicolargo <nicolashennion@gmail.com>2016-04-30 19:10:25 +0200
committernicolargo <nicolashennion@gmail.com>2016-04-30 19:10:25 +0200
commit3203d84bc80624e99389b95e19487397de23a98b (patch)
treecdb4efa546162d9514077f3f1a2304118cd442fb /glances/amps
parenteb5ea5d37b1ca3e9834ec01e419ed68ed90d4a9c (diff)
Default AMP manage default message
Diffstat (limited to 'glances/amps')
-rw-r--r--glances/amps/glances_nginx.py2
-rw-r--r--glances/amps/glances_systemd.py2
-rw-r--r--glances/amps/glances_systemv.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/glances/amps/glances_nginx.py b/glances/amps/glances_nginx.py
index a312680d..7b5cedf7 100644
--- a/glances/amps/glances_nginx.py
+++ b/glances/amps/glances_nginx.py
@@ -73,7 +73,7 @@ class Amp(GlancesAmp):
# """Init the AMP."""
# super(Amp, self).__init__(args=args)
- def update(self):
+ def update(self, process_list):
"""Update the AMP"""
if self.should_update():
diff --git a/glances/amps/glances_systemd.py b/glances/amps/glances_systemd.py
index df2cad95..4ee6feb6 100644
--- a/glances/amps/glances_systemd.py
+++ b/glances/amps/glances_systemd.py
@@ -65,7 +65,7 @@ class Amp(GlancesAmp):
# """Init the AMP."""
# super(Amp, self).__init__(args=args)
- def update(self):
+ def update(self, process_list):
"""Update the AMP"""
if self.should_update():
diff --git a/glances/amps/glances_systemv.py b/glances/amps/glances_systemv.py
index 7ef2256f..583f6b82 100644
--- a/glances/amps/glances_systemv.py
+++ b/glances/amps/glances_systemv.py
@@ -64,7 +64,7 @@ class Amp(GlancesAmp):
# """Init the AMP."""
# super(Amp, self).__init__(args=args)
- def update(self):
+ def update(self, process_list):
"""Update the AMP"""
if self.should_update():