1 <ul class="nav nav-tabs">
4 routerLink="/monitoring/active-alerts"
5 routerLinkActive="active"
6 ariaCurrentWhenActive="page"
7 [routerLinkActiveOptions]="{exact: true}"
9 <small *ngIf="prometheusAlertService.activeCriticalAlerts > 0"
10 class="badge badge-danger ml-1">{{ prometheusAlertService.activeCriticalAlerts }}</small>
11 <small *ngIf="prometheusAlertService.activeWarningAlerts > 0"
12 class="badge badge-warning ml-1">{{ prometheusAlertService.activeWarningAlerts }}</small></a>
16 routerLink="/monitoring/alerts"
17 routerLinkActive="active"
18 ariaCurrentWhenActive="page"
19 [routerLinkActiveOptions]="{exact: true}"
24 routerLink="/monitoring/silences"
25 routerLinkActive="active"
26 ariaCurrentWhenActive="page"
27 [routerLinkActiveOptions]="{exact: true}"