summaryrefslogtreecommitdiffstats
path: root/test-scheduler/ui/src/Global.vue
blob: f9dfed72ce379e0a8b9fc3019374dcd0dd372ae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
const SERVER_ADDR = '/parser/'
const WF_GRAPH_ADDR = '/wf-graph/'
const WF_SERVER_ADDR = '/wf-server/'
const GRAFANA_PORT = 3000
const GRAFANA_ADDR = 'http://' + window.location.hostname + ':' + GRAFANA_PORT + '/?orgId=1'
export default {
    SERVER_ADDR,
    WF_GRAPH_ADDR,
    WF_SERVER_ADDR,
    GRAFANA_ADDR
}
</script>