Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit 7544160

Browse files
authored
Adding missing baseUrl (#3553)
1 parent 897df21 commit 7544160

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

heron/tools/ui/resources/static/js/stat-trendlines.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ function StatTrendlines(baseUrl, cluster, environ, toponame, physicalPlan, logic
215215
.append('div')
216216
.attr('class', 'text-center')
217217
.html([
218-
'<a class="btn btn-primary btn-xs" target="_blank" href="/topologies/' + cluster + '/' + environ + '/' + toponame + '/' + container + '/file?path=./log-files/' + instance + '.log.0">logs</a>',
219-
'<a class="btn btn-primary btn-xs" target="_blank" href="/topologies/filestats/' + cluster + '/' + environ + '/' + toponame + '/' + container + '">job</a>',
220-
'<a class="btn btn-primary btn-xs" target="_blank" href="/topologies/' + cluster + '/' + environ + '/' + toponame + '/' + name + '/' + instance + '/exceptions">exceptions</a>',
218+
'<a class="btn btn-primary btn-xs" target="_blank" href="' + baseUrl + '/topologies/' + cluster + '/' + environ + '/' + toponame + '/' + container + '/file?path=./log-files/' + instance + '.log.0">logs</a>',
219+
'<a class="btn btn-primary btn-xs" target="_blank" href="' + baseUrl + '/topologies/filestats/' + cluster + '/' + environ + '/' + toponame + '/' + container + '">job</a>',
220+
'<a class="btn btn-primary btn-xs" target="_blank" href="' + baseUrl + '/topologies/' + cluster + '/' + environ + '/' + toponame + '/' + name + '/' + instance + '/exceptions">exceptions</a>',
221221
'<br>',
222222
].join(' '));
223223
}

0 commit comments

Comments
 (0)