MCPcopy Create free account
hub / github.com/deepnote/vscode-deepnote / getTelemetryReporter

Function getTelemetryReporter

src/platform/telemetry/index.ts:81–86  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

79
80let telemetryReporter: TelemetryReporter | undefined;
81export function getTelemetryReporter(): TelemetryReporter {
82 if (telemetryReporter) {
83 return telemetryReporter;
84 }
85 return (telemetryReporter = new TelemetryReporter(AppinsightsKey));
86}
87
88function sanitizeProperties(eventName: string, data: Record<string, any>) {
89 let customProperties: Record<string, string> = {};

Calls

no outgoing calls

Tested by

no test coverage detected