Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.toolbox
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
slapos.toolbox
Commits
2d69e8fb
Commit
2d69e8fb
authored
Jun 27, 2019
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
promise: add check_neo_health for ERP5/NEO SR
parent
76c05ae8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
154 additions
and
0 deletions
+154
-0
slapos/promise/plugin/check_neo_health.py
slapos/promise/plugin/check_neo_health.py
+63
-0
slapos/test/promise/plugin/test_check_neo_health.py
slapos/test/promise/plugin/test_check_neo_health.py
+91
-0
No files found.
slapos/promise/plugin/check_neo_health.py
0 → 100644
View file @
2d69e8fb
import
json
import
subprocess
import
six
from
zope.interface
import
implementer
from
slapos.grid.promise
import
interface
from
slapos.grid.promise.generic
import
\
AnomalyResult
,
GenericPromise
,
TestResult
@
implementer
(
interface
.
IPromise
)
class
RunPromise
(
GenericPromise
):
def
__init__
(
self
,
config
):
config
.
setdefault
(
'periodicity'
,
10
)
super
(
RunPromise
,
self
).
__init__
(
config
)
self
.
setTestLess
()
def
sense
(
self
):
try
:
summary
=
subprocess
.
check_output
(
(
self
.
getConfig
(
'neoctl'
),
'print'
,
'summary'
),
universal_newlines
=
True
,
).
splitlines
()
severities
=
json
.
loads
(
summary
[
0
][
1
:])
if
severities
:
cluster_list
=
sum
(
six
.
itervalues
(
severities
),
[])
try
:
cluster_list
.
remove
(
None
)
except
ValueError
:
summary
=
[]
else
:
summary
=
[
'main'
]
if
cluster_list
:
cluster_list
.
sort
()
summary
.
append
(
'backup: '
+
', '
.
join
(
cluster_list
))
(
self
.
logger
.
error
if
'problem'
in
severities
else
self
.
logger
.
warning
)(
'; '
.
join
(
summary
))
else
:
self
.
logger
.
info
(
summary
[
1
])
except
Exception
as
e
:
self
.
logger
.
critical
(
str
(
e
))
def
anomaly
(
self
):
latest_result_list
=
self
.
getLastPromiseResultList
()
if
latest_result_list
:
for
result
in
latest_result_list
[
0
]:
status
=
result
[
'status'
]
message
=
result
[
'message'
]
if
status
==
'CRITICAL'
:
return
AnomalyResult
(
True
,
message
)
if
status
!=
'INFO'
:
result_class
=
TestResult
if
status
==
'ERROR'
:
status
=
'PROBLEM'
# XXX: Allow the user not to bang in this case, because this is
# counter-productive as long as we haven't implemented the
# ability to ignore the state (started or stopped) of services.
if
self
.
getConfig
(
'bang-on-problem'
,
True
):
result_class
=
AnomalyResult
return
result_class
(
True
,
'%s (%s)'
%
(
status
,
message
))
else
:
message
=
"No result found!"
return
AnomalyResult
(
False
,
message
)
slapos/test/promise/plugin/test_check_neo_health.py
0 → 100644
View file @
2d69e8fb
# -*- coding: utf-8 -*-
##############################################################################
# Copyright (c) 2018 Vifib SARL and Contributors. All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
##############################################################################
import
mock
import
os
from
slapos.grid.promise
import
PromiseError
from
slapos.promise.plugin.check_neo_health
import
RunPromise
from
.
import
TestPromisePluginMixin
class
TestCheckNeoHealth
(
TestPromisePluginMixin
):
promise_name
=
"monitor-neo-health.py"
def
setUp
(
self
):
super
(
TestCheckNeoHealth
,
self
).
setUp
()
self
.
writePromise
(
neoctl
=
'neoctl'
)
def
writePromise
(
self
,
**
kw
):
super
(
TestCheckNeoHealth
,
self
).
writePromise
(
self
.
promise_name
,
"from %s import %s
\
n
extra_config_dict = %r
\
n
"
%
(
RunPromise
.
__module__
,
RunPromise
.
__name__
,
kw
))
def
runPromise
(
self
,
summary
,
failed
=
False
):
self
.
configureLauncher
(
enable_anomaly
=
True
)
with
mock
.
patch
(
'subprocess.check_output'
,
return_value
=
summary
):
if
failed
:
self
.
assertRaises
(
PromiseError
,
self
.
launcher
.
run
)
else
:
self
.
launcher
.
run
()
result
=
self
.
getPromiseResult
(
self
.
promise_name
)[
'result'
]
self
.
assertEqual
(
result
[
'failed'
],
failed
)
return
result
[
'message'
]
def
test_running
(
self
):
message
=
"
\
RUNNING; UP_TO_DATE=12; ltid=03d0a8a41ea17cb9 (2019-06-26 19:48:07.179095)"
self
.
assertEqual
(
message
,
self
.
runPromise
(
"# {}
\
n
%s
\
n
"
%
message
))
def
test_recovering
(
self
):
message
=
self
.
runPromise
(
"""# {"problem": [null]}
RECOVERING; UP_TO_DATE=12; DOWN=1
"""
,
True
)
self
.
assertEqual
(
message
,
"PROBLEM (main)"
)
def
test_lag
(
self
):
message
=
self
.
runPromise
(
"""# {"warning": ["neo_21"]}
RUNNING; UP_TO_DATE=1; ltid=03d17cd35613ac88 (2019-08-02 13:07:20.174262)
neo_21
BACKINGUP; UP_TO_DATE=1; ltid=03d17cd35613ac87; lag=ε
"""
,
True
)
self
.
assertEqual
(
message
,
"WARNING (backup: neo_21)"
)
def
test_out_of_date
(
self
):
message
=
self
.
runPromise
(
"""# {"warning": [null]}
BACKINGUP; OUT_OF_DATE=1, UP_TO_DATE=3; ltid=03d17cd516db69db (2019-08-02 13:09:05.357129)
"""
,
True
)
self
.
assertEqual
(
message
,
"WARNING (main)"
)
def
test_critical
(
self
):
message
=
self
.
runPromise
(
"ERROR: not connected"
,
True
)
self
.
assertEqual
(
message
,
"No JSON object could be decoded"
)
if
__name__
==
'__main__'
:
unittest
.
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment