File tree 4 files changed +12
-9
lines changed
servicex_app/servicex/templates
4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -165,3 +165,9 @@ data:
165
165
DID_FINDER_DEFAULT_SCHEME = '{{ $defaultScheme }}'
166
166
VALID_DID_SCHEMES = [ "{{ join "\",\"" $didFinders }}" ]
167
167
168
+ {{ if and .Values.logging.logstash.enabled .Values.logging.logstash.monitor }}
169
+ MONITOR_URL = '{{ tpl .Values.logging.logstash.monitor }}'
170
+ {{ end }}
171
+ {{ if and .Values.logging.logstash.enabled .Values.logging.logstash.logs }}
172
+ LOGS_URL = '{{ tpl .Values.logging.logstash.logs }}'
173
+ {{ end }}
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ logging:
62
62
host : servicex.atlas-ml.org
63
63
port : 5959
64
64
protocol : TCP
65
+ monitor : " https://atlas-kibana.mwt2.org:5601/s/servicex/app/dashboards?auth_provider_hint=anonymous1#/view/c2cc1f30-4a5b-11ed-afcf-d91dad577662?embed=true&_g=(filters%3A!()%2CrefreshInterval%3A(pause%3A!t%2Cvalue%3A0)%2Ctime%3A(from%3Anow-24h%2Fh%2Cto%3Anow))&show-time-filter=true"
66
+ logs : " https://atlas-kibana.mwt2.org:5601/s/servicex/app/dashboards?auth_provider_hint=anonymous1#/view/bb682100-5558-11ed-afcf-d91dad577662?embed=true&_g=(filters%3A!(('%24state'%3A(store%3AglobalState)%2Cmeta%3A(alias%3A!n%2Cdisabled%3A!f%2Cindex%3A'923eaa00-45b9-11ed-afcf-d91dad577662'%2Ckey%3Ainstance%2Cnegate%3A!f%2Cparams%3A(query%3Aservicex)%2Ctype%3Aphrase)%2Cquery%3A(match_phrase%3A(instance%3A{{ .Release.Name] }}))))%2CrefreshInterval%3A(pause%3A!t%2Cvalue%3A0)%2Ctime%3A(from%3Anow-24h%2Fh%2Cto%3Anow))&show-query-input=true&show-time-filter=true&hide-filter-bar=true"
65
67
minio :
66
68
auth :
67
69
rootPassword : leftfoot1
Original file line number Diff line number Diff line change 1
1
{% extends "base.html" %}
2
- {% block content %}
3
2
4
- < iframe
5
- src ="https://atlas-kibana.mwt2.org:5601/s/servicex/app/dashboards?auth_provider_hint=anonymous1#/view/bb682100-5558-11ed-afcf-d91dad577662?embed=true&_g=(filters%3A!(('%24state'%3A(store%3AglobalState)%2Cmeta%3A(alias%3A!n%2Cdisabled%3A!f%2Cindex%3A'923eaa00-45b9-11ed-afcf-d91dad577662'%2Ckey%3Ainstance%2Cnegate%3A!f%2Cparams%3A(query%3Aservicex)%2Ctype%3Aphrase)%2Cquery%3A(match_phrase%3A(instance%3A{{ config['INSTANCE_NAME'] }}))))%2CrefreshInterval%3A(pause%3A!t%2Cvalue%3A0)%2Ctime%3A(from%3Anow-24h%2Fh%2Cto%3Anow))&show-query-input=true&show-time-filter=true&hide-filter-bar=true ">
6
- </ iframe >
3
+ {% block content %}
4
+ < iframe src ="{{ config['LOGS_URL'] }} "> </ iframe >
7
5
{% endblock %}
8
6
9
7
Original file line number Diff line number Diff line change 1
1
{% extends "base.html" %}
2
- {% block content %}
3
-
4
- < iframe
5
- src ="https://atlas-kibana.mwt2.org:5601/s/servicex/app/dashboards?auth_provider_hint=anonymous1#/view/c2cc1f30-4a5b-11ed-afcf-d91dad577662?embed=true&_g=(filters%3A!()%2CrefreshInterval%3A(pause%3A!t%2Cvalue%3A0)%2Ctime%3A(from%3Anow-24h%2Fh%2Cto%3Anow))&show-time-filter=true ">
6
- </ iframe >
7
2
3
+ {% block content %}
4
+ < iframe src ="{{ config['MONITOR_URL'] }} "> </ iframe >
8
5
{% endblock %}
9
6
10
7
{% block scripts %}
You can’t perform that action at this time.
0 commit comments