summaryrefslogtreecommitdiffstats
path: root/webapp/src/app/pages/pages-routing.module.ts
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2018-06-18 00:42:22 +0200
committerSebastien Douheret <sebastien.douheret@iot.bzh>2018-06-18 22:29:55 +0200
commitee66af78c42c4d7ff33f104415bc09d60dbdc27b (patch)
tree834e494c29d339940a5a7036671650e439e3864d /webapp/src/app/pages/pages-routing.module.ts
parent72c9174cecdfbe4cde9baa71c0c02d0bee753224 (diff)
Added Supervision/Monitoring support
Added new API supervisor/* to control and get status of AGL XDS Supervisor. Also add new panel in dashboard to control and visualized data collected by the supervision (visualiazation is based on Granafa). Change-Id: I093470f6e384e96a0856b233390e85a98911162e Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'webapp/src/app/pages/pages-routing.module.ts')
-rw-r--r--webapp/src/app/pages/pages-routing.module.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/webapp/src/app/pages/pages-routing.module.ts b/webapp/src/app/pages/pages-routing.module.ts
index 655dea2..ae2ef4a 100644
--- a/webapp/src/app/pages/pages-routing.module.ts
+++ b/webapp/src/app/pages/pages-routing.module.ts
@@ -27,6 +27,8 @@ import { SdkManagementComponent } from './sdks/sdk-management/sdk-management.com
import { TargetsComponent } from './targets/targets.component';
import { TerminalsComponent } from './targets/terminals/terminals.component';
import { BuildComponent } from './build/build.component';
+import { SupervisionComponent } from './supervision/supervision.component';
+import { SupervisionConfigComponent } from './supervision/supervision-config.component';
const routes: Routes = [{
path: '',
@@ -53,6 +55,12 @@ const routes: Routes = [{
path: 'targets/term',
component: TerminalsComponent,
}, {
+ path: 'supervision/config',
+ component: SupervisionConfigComponent,
+ }, {
+ path: 'supervision/graph',
+ component: SupervisionComponent,
+ }, {
path: 'config',
loadChildren: './config/config.module#ConfigModule',
},