Telemetry params for Cache operations. Tracks cache hits, misses, and validation.

interface TelemetryCacheParams {
    cacheType: "local" | "server";
    entityName?: string;
    fingerprint?: string;
    operation: CacheOperationType;
    status?: CacheStatusType;
}

Properties

cacheType: "local" | "server"

Type of cache (local or server)

entityName?: string

Entity name (if applicable)

fingerprint?: string

Cache fingerprint for identification

Cache operation being performed

Result status of the cache operation