MCPcopy
hub / github.com/colbymchenry/codegraph / CountLine

Interface CountLine

src/telemetry/index.ts:106–115  ·  view source on GitHub ↗

One buffered line: either a usage-count delta or a lifecycle event.

Source from the content-addressed store, hash-verified

104
105/** One buffered line: either a usage-count delta or a lifecycle event. */
106interface CountLine {
107 v: number;
108 d: string; // UTC day YYYY-MM-DD
109 k: UsageKind;
110 n: string;
111 c: number; // calls
112 e: number; // errors
113 cn?: string; // client name (mcp_tool only)
114 cv?: string; // client version
115}
116interface EventLine {
117 v: number;
118 ev: LifecycleEvent;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected