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
Eric Zheng
slapos.toolbox
Commits
c2e0df76
Commit
c2e0df76
authored
Jun 12, 2017
by
Alain Takoudjou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
monitor: set timeout when getting sub monitor title
parent
2530e759
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
12 deletions
+21
-12
slapos/monitor/monitor.py
slapos/monitor/monitor.py
+21
-12
No files found.
slapos/monitor/monitor.py
View file @
c2e0df76
...
@@ -11,6 +11,7 @@ import argparse
...
@@ -11,6 +11,7 @@ import argparse
import
urllib2
import
urllib2
import
ssl
import
ssl
import
glob
import
glob
import
socket
from
datetime
import
datetime
from
datetime
import
datetime
OPML_START
=
"""<?xml version="1.0" encoding="UTF-8"?>
OPML_START
=
"""<?xml version="1.0" encoding="UTF-8"?>
...
@@ -216,26 +217,32 @@ class Monitoring(object):
...
@@ -216,26 +217,32 @@ class Monitoring(object):
if
not
monitor_url
.
endswith
(
'/'
):
if
not
monitor_url
.
endswith
(
'/'
):
monitor_url
=
monitor_url
+
'/'
monitor_url
=
monitor_url
+
'/'
url
=
monitor_url
+
'/.jio_documents/monitor.global.json'
# XXX Hard Coded path
url
=
monitor_url
+
'/monitor.global.json'
success
=
False
monitor_title
=
'Unknown Instance'
try
:
try
:
# Timeout after 20 seconds to not stall on download
timeout
=
20
# XXX - working here with public url
# XXX - working here with public url
if
hasattr
(
ssl
,
'_create_unverified_context'
):
if
hasattr
(
ssl
,
'_create_unverified_context'
):
context
=
ssl
.
_create_unverified_context
()
context
=
ssl
.
_create_unverified_context
()
response
=
urllib2
.
urlopen
(
url
,
context
=
context
)
response
=
urllib2
.
urlopen
(
url
,
context
=
context
,
timeout
=
timeout
)
else
:
else
:
response
=
urllib2
.
urlopen
(
url
)
response
=
urllib2
.
urlopen
(
url
,
timeout
=
timeout
)
except
urllib2
.
HTTPError
:
except
urllib2
.
HTTPError
:
self
.
bootstrap_is_ok
=
False
print
"ERROR: Failed to get Monitor configuration file at %s "
%
url
print
"Error: Failed to get Monitor configuration at %s "
%
monitor_url
except
socket
.
timeout
,
e
:
return
'Unknown Instance'
print
"ERROR: Timeout while downloading monitor config at %s "
%
url
else
:
else
:
try
:
try
:
monitor_dict
=
json
.
loads
(
response
.
read
())
monitor_dict
=
json
.
loads
(
response
.
read
())
return
monitor_dict
.
get
(
'title'
,
'Unknown Instance'
)
monitor_title
=
monitor_dict
.
get
(
'title'
,
'Unknown Instance'
)
success
=
True
except
ValueError
,
e
:
except
ValueError
,
e
:
print
"Bad Json file at %s"
%
url
print
"ERROR: Json file at %s is not valid"
%
url
self
.
bootstrap_is_ok
=
False
return
'Unknown Instance'
self
.
bootstrap_is_ok
=
success
return
monitor_title
def
getReportInfoFromFilename
(
self
,
filename
):
def
getReportInfoFromFilename
(
self
,
filename
):
splited_filename
=
filename
.
split
(
'_every_'
)
splited_filename
=
filename
.
split
(
'_every_'
)
...
@@ -324,7 +331,7 @@ class Monitoring(object):
...
@@ -324,7 +331,7 @@ class Monitoring(object):
except
OSError
,
e
:
except
OSError
,
e
:
print
"Error failed to create file %s"
%
self
.
parameter_cfg_file
print
"Error failed to create file %s"
%
self
.
parameter_cfg_file
pass
pass
def
generateOpmlFile
(
self
,
feed_url_list
,
output_file
):
def
generateOpmlFile
(
self
,
feed_url_list
,
output_file
):
...
@@ -344,7 +351,8 @@ class Monitoring(object):
...
@@ -344,7 +351,8 @@ class Monitoring(object):
'xml_url'
:
self
.
public_url
+
'/feed'
,
'xml_url'
:
self
.
public_url
+
'/feed'
,
'global_url'
:
"%s/jio_private/"
%
self
.
webdav_url
}
'global_url'
:
"%s/jio_private/"
%
self
.
webdav_url
}
for
feed_url
in
feed_url_list
:
for
feed_url
in
feed_url_list
:
opml_content
+=
OPML_OUTLINE_FEED
%
{
'title'
:
self
.
getMonitorTitleFromUrl
(
feed_url
+
"/share/jio_public/"
),
opml_content
+=
OPML_OUTLINE_FEED
%
{
'title'
:
self
.
getMonitorTitleFromUrl
(
feed_url
+
"/share/public/"
),
'html_url'
:
feed_url
+
'/public/feed'
,
'html_url'
:
feed_url
+
'/public/feed'
,
'xml_url'
:
feed_url
+
'/public/feed'
,
'xml_url'
:
feed_url
+
'/public/feed'
,
'global_url'
:
"%s/share/jio_private/"
%
feed_url
}
'global_url'
:
"%s/share/jio_private/"
%
feed_url
}
...
@@ -522,6 +530,7 @@ class Monitoring(object):
...
@@ -522,6 +530,7 @@ class Monitoring(object):
if
self
.
bootstrap_is_ok
:
if
self
.
bootstrap_is_ok
:
with
open
(
self
.
promise_output_file
,
'w'
)
as
promise_file
:
with
open
(
self
.
promise_output_file
,
'w'
)
as
promise_file
:
promise_file
.
write
(
""
)
promise_file
.
write
(
""
)
print
"SUCCESS: bootstrap is OK"
return
0
return
0
...
...
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