1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3 import { RouterModule } from '@angular/router';
5 import { NgbNavModule, NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap';
6 import { ChartsModule } from 'ng2-charts';
8 import { SharedModule } from '~/app/shared/shared.module';
9 import { CephSharedModule } from '../shared/ceph-shared.module';
10 import { DashboardComponent } from './dashboard/dashboard.component';
11 import { HealthPieComponent } from './health-pie/health-pie.component';
12 import { HealthComponent } from './health/health.component';
13 import { InfoCardComponent } from './info-card/info-card.component';
14 import { InfoGroupComponent } from './info-group/info-group.component';
15 import { MdsSummaryPipe } from './mds-summary.pipe';
16 import { MgrSummaryPipe } from './mgr-summary.pipe';
17 import { MonSummaryPipe } from './mon-summary.pipe';
18 import { OsdSummaryPipe } from './osd-summary.pipe';
43 export class DashboardModule {}