peer-devicer - v0.1.3
    Preparing search index...

    Interface PeerDeviceCache

    Cached reputation signals for a device, populated from other plugins' enrichmentInfo.details entries after each identify() call.

    Storing these allows PeerManager to propagate taint through the graph without requiring live calls to ip-devicer or tls-devicer.

    interface PeerDeviceCache {
        deviceId: string;
        driftScore?: number;
        flagReasons: string[];
        ipRisk?: number;
        tlsConsistency?: number;
        updatedAt: Date;
    }
    Index

    Properties

    deviceId: string
    driftScore?: number

    Fingerprint drift score (0–100) from fp-devicer, if available.

    flagReasons: string[]

    Human-readable reasons this device node is considered suspicious.

    ipRisk?: number

    IP risk score (0–100) from ip-devicer, if available.

    tlsConsistency?: number

    TLS consistency score (0–100) from tls-devicer, if available.

    updatedAt: Date

    UTC timestamp of the most recent update.