Type Alias StreamSourceInfo

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

Information about an upstream stream source in a mirror

Type declaration

  • active: Nanos

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

  • Optionalerror?: ApiError

    A possible error

  • lag: number

    How many messages behind the mirror operation is

  • name: string

    The name of the Stream being replicated

  • Optionalsubject_transforms?: SubjectTransformConfig[]

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