@astraload/profilers
Version:
CPU profiler and heap dumper for multi-instance Meteor web apps
13 lines (10 loc) • 307 B
JavaScript
export const TaskType = {
CpuProfile: 'cpuProfile',
HeapSnapshot: 'heapSnapshot',
};
export const TaskEvent = {
CpuProfileCreated: 'cpuProfileCreated',
HeapSnapshotCreated: 'heapSnapshotCreated',
};
export const CpuProfileFileExt = 'cpuprofile';
export const HeapSnapshotFileExt = 'heapsnapshot';