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

    Interface PeerEdge

    A directed (stored canonical, A < B lexicographically) relationship edge between two devices detected because they share a signal value.

    interface PeerEdge {
        deviceIdA: string;
        deviceIdB: string;
        edgeType: PeerEdgeType;
        firstSeen: Date;
        id: string;
        lastSeen: Date;
        occurrences: number;
        signalValue: string;
        weight: number;
    }
    Index

    Properties

    deviceIdA: string

    First device in the canonical ordering (lexicographically smaller).

    deviceIdB: string

    Second device in the canonical ordering.

    edgeType: PeerEdgeType

    Category of shared signal that produced this edge.

    firstSeen: Date

    Timestamp of first detection.

    id: string

    Unique edge identifier (UUID).

    lastSeen: Date

    Timestamp of most recent detection.

    occurrences: number

    Total number of times this edge has been reinforced.

    signalValue: string

    The shared signal value. e.g. "1.2.3.0/24" for subnet, JA4 string for TLS, raw canvas hash.

    weight: number

    Edge strength in [0, 1]. Higher values indicate stronger linkage.