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

Commit

Permalink
Adding missing baseUrl (#3553)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicknezis committed Jul 3, 2020
1 parent 897df21 commit 7544160
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions heron/tools/ui/resources/static/js/stat-trendlines.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ function StatTrendlines(baseUrl, cluster, environ, toponame, physicalPlan, logic
.append('div')
.attr('class', 'text-center')
.html([
'<a class="btn btn-primary btn-xs" target="_blank" href="/topologies/' + cluster + '/' + environ + '/' + toponame + '/' + container + '/file?path=./log-files/' + instance + '.log.0">logs</a>',
'<a class="btn btn-primary btn-xs" target="_blank" href="/topologies/filestats/' + cluster + '/' + environ + '/' + toponame + '/' + container + '">job</a>',
'<a class="btn btn-primary btn-xs" target="_blank" href="/topologies/' + cluster + '/' + environ + '/' + toponame + '/' + name + '/' + instance + '/exceptions">exceptions</a>',
'<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>',
'<a class="btn btn-primary btn-xs" target="_blank" href="' + baseUrl + '/topologies/filestats/' + cluster + '/' + environ + '/' + toponame + '/' + container + '">job</a>',
'<a class="btn btn-primary btn-xs" target="_blank" href="' + baseUrl + '/topologies/' + cluster + '/' + environ + '/' + toponame + '/' + name + '/' + instance + '/exceptions">exceptions</a>',
'<br>',
].join(' '));
}
Expand Down

0 comments on commit 7544160

Please sign in to comment.