From c53121ca084bc737eb6d756438d923017295345f Mon Sep 17 00:00:00 2001 From: usbharu <64310155+usbharu@users.noreply.github.com> Date: Thu, 14 Mar 2024 16:46:07 +0900 Subject: [PATCH] unos-fe: fix url --- unos-fe/src/app/watchdog/services/fetch-metrics.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unos-fe/src/app/watchdog/services/fetch-metrics.service.ts b/unos-fe/src/app/watchdog/services/fetch-metrics.service.ts index 9760cbf..22126ec 100644 --- a/unos-fe/src/app/watchdog/services/fetch-metrics.service.ts +++ b/unos-fe/src/app/watchdog/services/fetch-metrics.service.ts @@ -46,6 +46,6 @@ export class FetchMetricsService { } getCount(): Observable { - return this.http.get("/api/v1/metrics") + return this.http.get(this.baseUrl+"/api/v1/metrics") } }