@nats-io/jetstream
    Preparing search index...

    Type Alias StreamSourceInfo

    Information about an upstream stream source in a mirror

    type StreamSourceInfo = {
        active: Nanos;
        error?: ApiError;
        lag: number;
        name: string;
        subject_transforms?: SubjectTransformConfig[];
    }
    Index

    Properties

    active: Nanos

    When last the mirror had activity, in nanoseconds. Value will be -1 when there has been no activity.

    error?: ApiError

    A possible error

    lag: number

    How many messages behind the mirror operation is

    name: string

    The name of the Stream being replicated

    subject_transforms?: SubjectTransformConfig[]

    Apply a subject transforms to sourced messages before doing anything else. This feature only supported on 2.10.x and better.