mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
Remove "/prometheus" from default serverUrl.
This commit is contained in:
parent
93c3be2530
commit
04dd7bd8fb
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ export const getDefaultServer = (tenantId?: string): string => {
|
||||||
const { serverURL } = getAppModeParams();
|
const { serverURL } = getAppModeParams();
|
||||||
const storageURL = getFromStorage("SERVER_URL") as string;
|
const storageURL = getFromStorage("SERVER_URL") as string;
|
||||||
const logsURL = window.location.href.replace(/\/(select\/)?(vmui)\/.*/, "");
|
const logsURL = window.location.href.replace(/\/(select\/)?(vmui)\/.*/, "");
|
||||||
const defaultURL = window.location.href.replace(/\/(?:prometheus\/)?(?:graph|vmui)\/.*/, "/prometheus");
|
const defaultURL = window.location.href.replace(/\/(?:prometheus\/)?(?:graph|vmui)\/.*/, "/");
|
||||||
const url = serverURL || storageURL || defaultURL;
|
const url = serverURL || storageURL || defaultURL;
|
||||||
if (REACT_APP_TYPE === AppType.logs) return logsURL;
|
if (REACT_APP_TYPE === AppType.logs) return logsURL;
|
||||||
if (tenantId) return replaceTenantId(url, tenantId);
|
if (tenantId) return replaceTenantId(url, tenantId);
|
||||||
|
|
Loading…
Reference in a new issue