@valkey/valkey-glide
    Preparing search index...

    Class LatencyEventInfo

    Represents information about an event's latency spike time series.

    Index
    • Internal

      Parameters

      • eventName: string
      • latestTime: number
      • latestDuration: number
      • maxDuration: number
      • Optionalsum: number
      • Optionalcount: number

      Returns LatencyEventInfo

    count?: number

    The number of latency spikes recorded in the event's time series. Only populated for Valkey 8.1+.

    eventName: string

    The name of the event.

    latestDuration: number

    The duration of the latest latency spike, in milliseconds.

    latestTime: number

    The time of the latest latency spike, as a Unix timestamp in seconds.

    maxDuration: number

    The all-time maximum duration of a latency spike, in milliseconds.

    sum?: number

    The sum of all latency spike durations in the event's time series, in milliseconds. Only populated for Valkey 8.1+.