ÿØÿà JPEG ÿþ;
| Server IP : 68.65.120.201 / Your IP : 216.73.216.126 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/taxhyuvu/nodevenv/public_html/dp_taxhelplines/14/lib/node_modules/next/dist/trace/ |
Upload File : |
import { SpanId } from './shared';
export declare enum SpanStatus {
Started = 0,
Stopped = 1
}
export declare class Span {
name: string;
id: SpanId;
parentId?: SpanId;
duration: number | null;
attrs: {
[key: string]: any;
};
status: SpanStatus;
_start: bigint;
constructor({ name, parentId, attrs, startTime, }: {
name: string;
parentId?: SpanId;
startTime?: bigint;
attrs?: Object;
});
stop(stopTime?: bigint): void;
traceChild(name: string, attrs?: Object): Span;
manualTraceChild(name: string, startTime: bigint, stopTime: bigint, attrs?: Object): void;
setAttribute(key: string, value: any): void;
traceFn(fn: any): any;
traceAsyncFn<T>(fn: () => T | Promise<T>): Promise<T>;
}
export declare const trace: (name: string, parentId?: string | undefined, attrs?: {
[key: string]: string;
} | undefined) => Span;
export declare const flushAllTraces: () => Promise<void>;