MCPcopy Index your code
hub / github.com/codeaashu/claude-code / stopWriteInterval

Function stopWriteInterval

src/utils/telemetry/perfettoTracing.ts:951–960  ·  view source on GitHub ↗

* Stop the periodic write timer.

()

Source from the content-addressed store, hash-verified

949 * Stop the periodic write timer.
950 */
951function stopWriteInterval(): void {
952 if (staleSpanCleanupId) {
953 clearInterval(staleSpanCleanupId)
954 staleSpanCleanupId = null
955 }
956 if (writeIntervalId) {
957 clearInterval(writeIntervalId)
958 writeIntervalId = null
959 }
960}
961
962/**
963 * Force-close any remaining open spans at session end.

Callers 3

writePerfettoTraceFunction · 0.85
writePerfettoTraceSyncFunction · 0.85
resetPerfettoTracerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected