HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: //var/www/html/orbi-individual/node_modules/next/dist/lib/memory/trace.d.ts
import { type Span } from '../../trace';
interface MemoryUsage {
    'memory.rss': number;
    'memory.heapUsed': number;
    'memory.heapTotal': number;
    'memory.heapMax': number;
}
/**
 * Begins a timer that will record memory usage periodically to understand
 * memory usage across the lifetime of the process.
 */
export declare function startPeriodicMemoryUsageTracing(): void;
export declare function stopPeriodicMemoryUsageTracing(): void;
/**
 * Returns the list of all recorded memory usage snapshots from the process.
 */
export declare function getAllMemoryUsageSpans(): MemoryUsage[];
/**
 * Records a snapshot of memory usage at this moment in time to the .next/trace
 * file.
 */
export declare function traceMemoryUsage(description: string, parentSpan?: Span | undefined): void;
export {};