File size: 1,107 Bytes
064bfd6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | /**
* Analytics service - public API for event logging
*
* The open build intentionally ships without product telemetry. We keep this
* module as a compatibility boundary so existing call sites can remain
* unchanged while all analytics become inert.
*/
export type AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS = never
export type AnalyticsMetadata_I_VERIFIED_THIS_IS_PII_TAGGED = never
export function stripProtoFields<V>(
metadata: Record<string, V>,
): Record<string, V> {
return metadata
}
type LogEventMetadata = { [key: string]: boolean | number | undefined }
export type AnalyticsSink = {
logEvent: (eventName: string, metadata: LogEventMetadata) => void
logEventAsync: (
eventName: string,
metadata: LogEventMetadata,
) => Promise<void>
}
export function attachAnalyticsSink(_newSink: AnalyticsSink): void {}
export function logEvent(
_eventName: string,
_metadata: LogEventMetadata,
): void {}
export async function logEventAsync(
_eventName: string,
_metadata: LogEventMetadata,
): Promise<void> {}
export function _resetForTesting(): void {}
|