Skip to content

Commit

Permalink
Add placeholder for Jaeger version (#650)
Browse files Browse the repository at this point in the history
Signed-off-by: Yuri Shkuro <[email protected]>
  • Loading branch information
yurishkuro authored Oct 9, 2020
1 parent 00fdec4 commit f952882
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions packages/jaeger-ui/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,20 @@
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<title>Jaeger UI</title>
<script>
// Jaeger UI config data is embedded by the query-service. This is
// later merged with defaults into the redux `state.config` via
// src/utils/config/get-config.js. The default provided by the query
// service should be an empty object or it can leave `DEFAULT_CONFIG`
// unchanged.
// Jaeger UI config data is embedded by the query-service via search-replace.
// This is later merged with defaults into the redux `state.config` via
// src/utils/config/get-config.js.
function getJaegerUiConfig() {
const DEFAULT_CONFIG = null;
const JAEGER_CONFIG = DEFAULT_CONFIG;
return JAEGER_CONFIG;
}
// Jaeger version data is embedded by the query-service via search/replace.
function getJaegerVersion() {
const DEFAULT_VERSION = {"gitCommit":"", "gitVersion":"", "buildDate":""};
const JAEGER_VERSION = DEFAULT_VERSION;
return JAEGER_VERSION;
}
</script>
</head>
<body>
Expand Down

0 comments on commit f952882

Please sign in to comment.