@pwngh/economy-lab
    Preparing search index...

    Type Alias Signal

    One buffered telemetry event. Meter counts and observations buffer as-is; a log call buffers as name = event, value = 1, and tags = { level } only — log fields are forwarded to the host logger but never buffered, so detectors match on event names and levels alone.

    type Signal = {
        at: number;
        name: string;
        source: "meter" | "log";
        tags: Readonly<Record<string, string>>;
        value: number;
    }
    Index
    at: number

    Host-clock milliseconds at capture, the timestamp SignalFeed.since filters on.

    name: string
    source: "meter" | "log"
    tags: Readonly<Record<string, string>>
    value: number