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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Justin
slapos.toolbox
Commits
cfa06942
Commit
cfa06942
authored
Dec 11, 2019
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Feature/promise check surykatka json
/reviewed-on
nexedi/slapos.toolbox!72
parent
7ae224cb
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
543 additions
and
0 deletions
+543
-0
slapos/promise/plugin/check_surykatka_json.py
slapos/promise/plugin/check_surykatka_json.py
+127
-0
slapos/test/promise/plugin/test_check_surykatka_json.py
slapos/test/promise/plugin/test_check_surykatka_json.py
+416
-0
No files found.
slapos/promise/plugin/check_surykatka_json.py
0 → 100644
View file @
cfa06942
from
zope.interface
import
implementer
from
slapos.grid.promise
import
interface
from
slapos.grid.promise.generic
import
GenericPromise
import
datetime
import
email.utils
import
json
import
os
import
time
@
implementer
(
interface
.
IPromise
)
class
RunPromise
(
GenericPromise
):
def
__init__
(
self
,
config
):
super
(
RunPromise
,
self
).
__init__
(
config
)
# Set frequency compatible to default surykatka interval - 2 minutes
self
.
setPeriodicity
(
float
(
self
.
getConfig
(
'frequency'
,
2
)))
def
senseBotStatus
(
self
):
key
=
'bot_status'
def
logError
(
msg
,
*
args
):
self
.
logger
.
error
(
key
+
': '
+
msg
,
*
args
)
if
key
not
in
self
.
surykatka_json
:
logError
(
"%r not in %r"
,
key
,
self
.
json_file
)
return
bot_status_list
=
self
.
surykatka_json
[
key
]
if
len
(
bot_status_list
)
==
0
:
logError
(
"%r empty in %r"
,
key
,
self
.
json_file
)
return
bot_status
=
bot_status_list
[
0
]
if
bot_status
.
get
(
'text'
)
!=
'loop'
:
logError
(
"No type loop detected in %r"
,
self
.
json_file
)
return
timetuple
=
email
.
utils
.
parsedate
(
bot_status
[
'date'
])
last_bot_datetime
=
datetime
.
datetime
.
fromtimestamp
(
time
.
mktime
(
timetuple
))
delta
=
self
.
utcnow
-
last_bot_datetime
# sanity check
if
delta
<
datetime
.
timedelta
(
minutes
=
0
):
logError
(
'Last bot datetime %s is in future, UTC now %s'
,
last_bot_datetime
,
self
.
utcnow
)
return
if
delta
>
datetime
.
timedelta
(
minutes
=
15
):
logError
(
'Last bot datetime %s is more than 15 minutes old, UTC now %s'
,
last_bot_datetime
,
self
.
utcnow
)
return
self
.
logger
.
info
(
'%s: Last bot status from %s ok, UTC now is %s'
,
key
,
last_bot_datetime
,
self
.
utcnow
)
def
senseHttpQuery
(
self
):
key
=
'http_query'
def
logError
(
msg
,
*
args
):
self
.
logger
.
error
(
key
+
': '
+
msg
,
*
args
)
if
key
not
in
self
.
surykatka_json
:
logError
(
"%r not in %r"
,
key
,
self
.
json_file
)
return
url
=
self
.
getConfig
(
'url'
)
status_code
=
self
.
getConfig
(
'status-code'
)
ip_list
=
self
.
getConfig
(
'ip-list'
,
''
).
split
()
entry_list
=
[
q
for
q
in
self
.
surykatka_json
[
key
]
if
q
[
'url'
]
==
url
]
if
len
(
entry_list
)
==
0
:
logError
(
'No data for %r'
,
url
)
return
error_list
=
[]
for
entry
in
entry_list
:
if
str
(
entry
[
'status_code'
])
!=
str
(
status_code
):
error_list
.
append
(
'IP %s got status code %s instead of %s'
%
(
entry
[
'ip'
],
entry
[
'status_code'
],
status_code
))
db_ip_list
=
[
q
[
'ip'
]
for
q
in
entry_list
]
if
len
(
ip_list
):
if
set
(
ip_list
)
!=
set
(
db_ip_list
):
error_list
.
append
(
'expected IPs %s differes from got %s'
%
(
' '
.
join
(
ip_list
),
' '
.
join
(
db_ip_list
)))
if
len
(
error_list
):
logError
(
'Problem with %s: '
%
(
url
,)
+
', '
.
join
(
error_list
))
return
if
len
(
ip_list
)
>
0
:
self
.
logger
.
info
(
'%s: %s replied correctly with status code %s on ip list %s'
,
key
,
url
,
status_code
,
' '
.
join
(
ip_list
))
else
:
self
.
logger
.
info
(
'%s: %s replied correctly with status code %s'
,
key
,
url
,
status_code
)
def
sense
(
self
):
"""
Check if frontend URL is available
"""
test_utcnow
=
self
.
getConfig
(
'test-utcnow'
)
if
test_utcnow
:
self
.
utcnow
=
datetime
.
datetime
.
fromtimestamp
(
time
.
mktime
(
email
.
utils
.
parsedate
(
test_utcnow
)))
else
:
self
.
utcnow
=
datetime
.
datetime
.
utcnow
()
self
.
json_file
=
self
.
getConfig
(
'json-file'
,
''
)
if
not
os
.
path
.
exists
(
self
.
json_file
):
self
.
logger
.
error
(
'File %r does not exists'
,
self
.
json_file
)
return
with
open
(
self
.
json_file
)
as
fh
:
try
:
self
.
surykatka_json
=
json
.
load
(
fh
)
except
Exception
:
self
.
logger
.
error
(
"Problem loading JSON from %r"
,
self
.
json_file
)
return
report
=
self
.
getConfig
(
'report'
)
if
report
==
'bot_status'
:
return
self
.
senseBotStatus
()
elif
report
==
'http_query'
:
return
self
.
senseHttpQuery
()
else
:
self
.
logger
.
error
(
"Report %r is not supported"
,
report
)
return
def
anomaly
(
self
):
return
self
.
_test
(
result_count
=
3
,
failure_amount
=
3
)
slapos/test/promise/plugin/test_check_surykatka_json.py
0 → 100644
View file @
cfa06942
This diff is collapsed.
Click to expand it.
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