Skip to content

Commit 7361bdc

Browse files
author
Ilija Vukotic
committed
now monitoring and log iframes are configurable
1 parent ffcb401 commit 7361bdc

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

helm/servicex/templates/app/configmap.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,9 @@ data:
165165
DID_FINDER_DEFAULT_SCHEME = '{{ $defaultScheme }}'
166166
VALID_DID_SCHEMES = [ "{{ join "\",\"" $didFinders }}" ]
167167
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 }}

helm/servicex/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ logging:
6262
host: servicex.atlas-ml.org
6363
port: 5959
6464
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"
6567
minio:
6668
auth:
6769
rootPassword: leftfoot1

servicex_app/servicex/templates/logs.html

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{% extends "base.html" %}
2-
{% block content %}
32

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>
75
{% endblock %}
86

97

servicex_app/servicex/templates/monitor.html

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
{% 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>
72

3+
{% block content %}
4+
<iframe src="{{ config['MONITOR_URL'] }}"> </iframe>
85
{% endblock %}
96

107
{% block scripts %}

0 commit comments

Comments
 (0)