UNPKG

@hadesz/monitor

Version:

A complete server monitoring system with agents, server and dashboard

19 lines (18 loc) 459 B
import { Feature } from '../featureManager'; export interface ProfilerType { init(): void; register(): void; destroy(): void; } export declare class ProfilingConfig { cpuJS: boolean; heapSnapshot: boolean; heapSampling: boolean; implementation?: string; } export declare class ProfilingFeature implements Feature { private profiler; private logger; init(config?: ProfilingConfig | boolean): any; destroy(): void; }