Merge pull request 'unos-fe: fix url' () from unos-fe into master

Reviewed-on: 
This commit is contained in:
usbharu 2024-03-14 07:53:25 +00:00
commit 2dbd49300d
1 changed files with 1 additions and 1 deletions
unos-fe/src/app/watchdog/services

View File

@ -46,6 +46,6 @@ export class FetchMetricsService {
}
getCount(): Observable<StatusIntMap> {
return this.http.get<StatusIntMap>("/api/v1/metrics")
return this.http.get<StatusIntMap>(this.baseUrl+"/api/v1/metrics")
}
}