Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 23x 23x 23x 23x 23x 23x 23x 23x 23x 23x 23x 23x 23x 23x 21x 21x 56x 21x 24x 72x 24x 40x 16x 32x 4x 21x 6x 6x 6x 3x 3x 3x 3x 3x 3x 3x 3x 3x 6x | import { Component, OnInit } from '@angular/core'; import { I18n } from '@ngx-translate/i18n-polyfill'; import { SortDirection, SortPropDir } from '@swimlane/ngx-datatable'; import { BsModalRef, BsModalService } from 'ngx-bootstrap/modal'; import { Observable, Subscriber } from 'rxjs'; import { PrometheusService } from '../../../../shared/api/prometheus.service'; import { CriticalConfirmationModalComponent } from '../../../../shared/components/critical-confirmation-modal/critical-confirmation-modal.component'; import { ActionLabelsI18n, SucceededActionLabelsI18n } from '../../../../shared/constants/app.constants'; import { CellTemplate } from '../../../../shared/enum/cell-template.enum'; import { Icons } from '../../../../shared/enum/icons.enum'; import { NotificationType } from '../../../../shared/enum/notification-type.enum'; import { AlertmanagerSilence } from '../../../../shared/models/alertmanager-silence'; import { CdTableAction } from '../../../../shared/models/cd-table-action'; import { CdTableColumn } from '../../../../shared/models/cd-table-column'; import { CdTableSelection } from '../../../../shared/models/cd-table-selection'; import { Permission } from '../../../../shared/models/permissions'; import { CdDatePipe } from '../../../../shared/pipes/cd-date.pipe'; import { AuthStorageService } from '../../../../shared/services/auth-storage.service'; import { NotificationService } from '../../../../shared/services/notification.service'; import { URLBuilderService } from '../../../../shared/services/url-builder.service'; const BASE_URL = 'silence'; @Component({ providers: [{ provide: URLBuilderService, useValue: new URLBuilderService(BASE_URL) }], selector: 'cd-silences-list', template: require('./silence-list.component.html'), styles: [] }) export class SilenceListComponent implements OnInit { silences: AlertmanagerSilence[] = []; columns: CdTableColumn[]; tableActions: CdTableAction[]; permission: Permission; selection = new CdTableSelection(); modalRef: BsModalRef; customCss = { 'label label-danger': 'active', 'label label-warning': 'pending', 'label label-default': 'expired' }; sorts: SortPropDir[] = [{ prop: 'endsAt', dir: SortDirection.desc }]; constructor( private authStorageService: AuthStorageService, private i18n: I18n, private cdDatePipe: CdDatePipe, private prometheusService: PrometheusService, private modalService: BsModalService, private notificationService: NotificationService, private urlBuilder: URLBuilderService, private actionLabels: ActionLabelsI18n, private succeededLabels: SucceededActionLabelsI18n ) { this.permission = this.authStorageService.getPermissions().prometheus; } ngOnInit() { const selectionExpired = (selection: CdTableSelection) => selection.first() && selection.first().status.state === 'expired'; this.tableActions = [ { permission: 'create', icon: Icons.add, routerLink: () => this.urlBuilder.getCreate(), canBePrimary: (selection: CdTableSelection) => !selection.hasSingleSelection, name: this.actionLabels.CREATE }, { permission: 'create', canBePrimary: (selection: CdTableSelection) => selection.hasSingleSelection && selectionExpired(selection), disable: (selection: CdTableSelection) => !selection.hasSingleSelection || selection.first().cdExecuting || (selection.first().cdExecuting && selectionExpired(selection)) || !selectionExpired(selection), icon: Icons.copy, routerLink: () => this.urlBuilder.getRecreate(this.selection.first().id), name: this.actionLabels.RECREATE }, { permission: 'update', icon: Icons.edit, canBePrimary: (selection: CdTableSelection) => selection.hasSingleSelection && !selectionExpired(selection), disable: (selection: CdTableSelection) => !selection.hasSingleSelection || selection.first().cdExecuting || (selection.first().cdExecuting && !selectionExpired(selection)) || selectionExpired(selection), routerLink: () => this.urlBuilder.getEdit(this.selection.first().id), name: this.actionLabels.EDIT }, { permission: 'delete', icon: Icons.trash, canBePrimary: (selection: CdTableSelection) => selection.hasSingleSelection && !selectionExpired(selection), disable: (selection: CdTableSelection) => !selection.hasSingleSelection || selection.first().cdExecuting || selectionExpired(selection), click: () => this.expireSilence(), name: this.actionLabels.EXPIRE } ]; this.columns = [ { name: this.i18n('ID'), prop: 'id', flexGrow: 3 }, { name: this.i18n('Created by'), prop: 'createdBy', flexGrow: 2 }, { name: this.i18n('Started'), prop: 'startsAt', pipe: this.cdDatePipe }, { name: this.i18n('Updated'), prop: 'updatedAt', pipe: this.cdDatePipe }, { name: this.i18n('Ends'), prop: 'endsAt', pipe: this.cdDatePipe }, { name: this.i18n('Status'), prop: 'status.state', cellTransformation: CellTemplate.classAdding } ]; } refresh() { this.prometheusService.ifAlertmanagerConfigured(() => { this.prometheusService.getSilences().subscribe( (silences) => { this.silences = silences; }, () => { this.prometheusService.disableAlertmanagerConfig(); } ); }); } updateSelection(selection: CdTableSelection) { this.selection = selection; } expireSilence() { const id = this.selection.first().id; const i18nSilence = this.i18n('Silence'); const applicationName = 'Prometheus'; this.modalRef = this.modalService.show(CriticalConfirmationModalComponent, { initialState: { itemDescription: i18nSilence, itemNames: [id], actionDescription: this.actionLabels.EXPIRE, submitActionObservable: () => new Observable((observer: Subscriber<any>) => { this.prometheusService.expireSilence(id).subscribe( () => { this.notificationService.show( NotificationType.success, `${this.succeededLabels.EXPIRED} ${i18nSilence} ${id}`, undefined, undefined, applicationName ); }, (resp) => { resp['application'] = applicationName; observer.error(resp); }, () => { observer.complete(); this.refresh(); } ); }) } }); } } |