Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
isaak yansane-sisk
slapos
Commits
47a66664
Commit
47a66664
authored
Jan 13, 2015
by
Alain Takoudjou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
monitor: Correctly send parameters to apachedex
parent
9846c9b4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
8 deletions
+15
-8
stack/monitor/buildout.cfg
stack/monitor/buildout.cfg
+2
-2
stack/monitor/monitor.cfg.in
stack/monitor/monitor.cfg.in
+1
-0
stack/monitor/run-apachedex.py.in
stack/monitor/run-apachedex.py.in
+12
-6
No files found.
stack/monitor/buildout.cfg
View file @
47a66664
...
...
@@ -43,7 +43,7 @@ recipe = slapos.recipe.template
url = ${:_profile_base_location_}/monitor.cfg.in
output = ${buildout:directory}/monitor.cfg
filename = monitor.cfg
md5sum =
fb6fb065e72773122c5f991b52ebddc5
md5sum =
af5c10c05b03b59a49187fd3e151eb43
mode = 0644
[monitor-bin]
...
...
@@ -130,7 +130,7 @@ mode = 0644
recipe = hexagonit.recipe.download
url = ${:_profile_base_location_}/${:filename}
download-only = true
md5sum = 0
52b7818d052d115b66ce2b3dab1d7c3
md5sum = 0
0b230e1dee6e7f25d2050f6f0ae39e2
filename = run-apachedex.py.in
mode = 0644
...
...
stack/monitor/monitor.cfg.in
View file @
47a66664
...
...
@@ -211,6 +211,7 @@ extra-context =
key name :script-name
[apachedex-parameters]
default_parameter =
# XXX - Sample log file with curent date: apache_access.log-%(date)s.gz
# which will be equivalent to apache_access.log-20150112.gz if the date is 2015-01-12
apache-log-list =
...
...
stack/monitor/run-apachedex.py.in
View file @
47a66664
...
...
@@ -7,13 +7,14 @@ import subprocess
from datetime import date
base_name = "{{ name }}".strip()
default = "{{ parameter_dict['default_parameter'] }}".strip()
apache_log_list = """{{ parameter_dict['apache-log-list'] }}""".split('\n')
base_list = [base.strip() for base in
base_list = [base.strip()
.split(' ')
for base in
"""{{ parameter_dict['base-list'] }}""".split('\n') if base]
skip_base_list = [base.strip() for base in
skip_base_list = [base.strip()
.split(' ')
for base in
"""{{ parameter_dict['skip-base-list'] }}""".split('\n')
if base]
erp5_base_list = [base.strip() for base in
erp5_base_list = [base.strip()
.split(' ')
for base in
"""{{ parameter_dict['erp5-base-list'] }}""".split('\n')
if base]
...
...
@@ -31,6 +32,8 @@ if not os.path.exists(folder_today):
apachedex = "{{ apachedex_executable }}".strip()
argument_list = [apachedex, '--js-embed', '--out',
os.path.join(folder_today, 'ApacheDex-%s.html' % base_name)]
if default:
argument_list += ['--default', default]
log_list = []
for logfile in apache_log_list:
...
...
@@ -48,15 +51,18 @@ if not log_list:
if erp5_base_list:
argument_list.append('--erp5-base')
argument_list += erp5_base_list
for args_list in erp5_base_list:
argument_list += args_list
if base_list:
argument_list.append('--base')
argument_list += base_list
for args_list in base_list:
argument_list += args_list
if skip_base_list:
argument_list.append('--skip-base')
argument_list += skip_base_list
for args_list in skip_base_list:
argument_list += args_list
argument_list.append('--error-detail')
argument_list += log_list
...
...
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