Skip to main contentIBM Video Streaming Developers

VideoDelivery

An ECDN server’s video delivery status.

type VideoDelivery {
    # Current number of users viewing a video through this server (buffering as well).
    # Nullable in case of errors (this metric is coming from an external service).
    currentNumberOfViewers: Int
    # Current number of users experiencing buffering on this server.
    # Nullable in case of errors (this metric is coming from an external service).
    currentNumberOfBuffering: Int
    # Number of users viewing a video through this server.
    # Nullable in case of errors (this metric is coming from an external service).
    numberOfViewers: [ScalarPoint!]
    # Number of users experiencing buffering on this server.
    # Nullable in case of errors (this metric is coming from an external service).
    numberOfBuffering: [ScalarPoint!]
}

Fields

currentNumberOfViewers: Int

Current number of users viewing a video through this server (buffering as well). Nullable in case of errors (this metric is coming from an external service).

currentNumberOfBuffering: Int

Current number of users experiencing buffering on this server. Nullable in case of errors (this metric is coming from an external service).

numberOfViewers: [ScalarPoint!]

Number of users viewing a video through this server. Nullable in case of errors (this metric is coming from an external service).

numberOfBuffering: [ScalarPoint!]

Number of users experiencing buffering on this server. Nullable in case of errors (this metric is coming from an external service).