src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts
Display the specified performance counters in a datatable.
selector | cd-table-performance-counter |
styleUrls | ./table-performance-counter.component.scss |
templateUrl | ./table-performance-counter.component.html |
Properties |
Methods |
Inputs |
constructor(performanceCounterService: PerformanceCounterService, i18n: I18n)
|
|||||||||
Parameters :
|
serviceId | |
Type : string
|
|
The service identifier. |
serviceType | |
Type : string
|
|
The service type, e.g. 'rgw', 'mds', 'mon', 'osd', ... |
getCounters | ||||||
getCounters(context: CdTableFetchDataContext)
|
||||||
Parameters :
Returns :
void
|
ngOnInit |
ngOnInit()
|
Returns :
void
|
columns |
Type : Array<CdTableColumn>
|
Default value : []
|
counters |
Type : Array<object>
|
Default value : []
|
Public valueTpl |
Type : TemplateRef<any>
|
Decorators :
@ViewChild('valueTpl')
|
import { Component, Input, OnInit, TemplateRef, ViewChild } from '@angular/core';
import { I18n } from '@ngx-translate/i18n-polyfill';
import { PerformanceCounterService } from '../../../shared/api/performance-counter.service';
import { CdTableColumn } from '../../../shared/models/cd-table-column';
import { CdTableFetchDataContext } from '../../../shared/models/cd-table-fetch-data-context';
/**
* Display the specified performance counters in a datatable.
*/
@Component({
selector: 'cd-table-performance-counter',
templateUrl: './table-performance-counter.component.html',
styleUrls: ['./table-performance-counter.component.scss']
})
export class TablePerformanceCounterComponent implements OnInit {
columns: Array<CdTableColumn> = [];
counters: Array<object> = [];
@ViewChild('valueTpl')
public valueTpl: TemplateRef<any>;
/**
* The service type, e.g. 'rgw', 'mds', 'mon', 'osd', ...
*/
@Input()
serviceType: string;
/**
* The service identifier.
*/
@Input()
serviceId: string;
constructor(private performanceCounterService: PerformanceCounterService, private i18n: I18n) {}
ngOnInit() {
this.columns = [
{
name: this.i18n('Name'),
prop: 'name',
flexGrow: 1
},
{
name: this.i18n('Description'),
prop: 'description',
flexGrow: 1
},
{
name: this.i18n('Value'),
cellTemplate: this.valueTpl,
flexGrow: 1
}
];
}
getCounters(context: CdTableFetchDataContext) {
this.performanceCounterService.get(this.serviceType, this.serviceId).subscribe(
(resp: object[]) => {
this.counters = resp;
},
(error) => {
if (error.status === 404) {
error.preventDefault();
this.counters = null;
} else {
context.error();
}
}
);
}
}
<cd-table *ngIf="counters; else warning"
[data]="counters"
[columns]="columns"
columnMode="flex"
[autoSave]="false"
(fetchData)="getCounters($event)">
<ng-template #valueTpl let-row="row">
{{ row.value | dimless }} {{ row.unit }}
</ng-template>
</cd-table>
<ng-template #warning>
<cd-warning-panel i18n>Performance counters not available</cd-warning-panel>
</ng-template>
./table-performance-counter.component.scss