fix(core): update

This commit is contained in:
2021-08-12 23:19:39 +02:00
commit 932c2e5795
16 changed files with 26321 additions and 0 deletions

View File

@ -0,0 +1,11 @@
// this might be extracted into a package @pushrocks/smartmetrics-interfaces in the future
export interface IMetricsSnapshot {
originalMetrics: any[];
process_cpu_seconds_total: number;
nodejs_active_handles_total: number;
nodejs_active_requests_total: number;
nodejs_heap_size_total_bytes: number;
cpuPercentage: number;
memoryPercentage: number;
memoryUsageText: string;
}