MCPcopy
hub / github.com/joerick/pyinstrument / SessionData

Interface SessionData

html_renderer/src/lib/dataTypes.ts:1–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export interface SessionData {
2 session: {
3 start_time: number;
4 duration: number;
5 min_interval: number;
6 max_interval: number;
7 sample_count: number;
8 start_call_stack: string[],
9 target_description: string;
10 cpu_time: number;
11 sys_path: string;
12 sys_prefixes: string[];
13 };
14 frame_tree: FrameData|null;
15}
16
17export interface FrameData {
18 identifier: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…