diff options
Diffstat (limited to 'usecaseui-portal/src/app/core')
-rw-r--r-- | usecaseui-portal/src/app/core/services/slicingTaskServices.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts index 1a2c9893..e5f55253 100644 --- a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts +++ b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts @@ -59,7 +59,8 @@ export class SlicingTaskServices { //monitor 5G
fetchTraffic: this.baseUrl + "/monitoring/queryTimestamp/{queryTimestamp}/trafficData",
fetchOnlineusers: this.baseUrl + "/monitoring/queryTimestamp/{queryTimestamp}/onlineUsers",
- fetchBandwidth: this.baseUrl + "/monitoring/queryTimestamp/{queryTimestamp}/bandwidth"
+ fetchBandwidth: this.baseUrl + "/monitoring/queryTimestamp/{queryTimestamp}/bandwidth",
+ getConnectionLinkTable: this.baseUrl + "/connectionlinktable" // :todo
}
@@ -218,6 +219,10 @@ export class SlicingTaskServices { let url = this.url.fetchBandwidth.replace("{queryTimestamp}", time);
return this.Http.httpAxios("post", url, service_list, failedCallback);
}
+ getConnectionLinkTable( failedCallback?:any ) { // :todo
+ let url = this.url.getConnectionLinkTable;
+ return this.Http.httpAxios("get", url, null, failedCallback);
+ }
}
|