Vinyl
    Preparing search index...

    Interface NetworkMetrics

    Statistics for service calls and content transfers. Immutable

    interface NetworkMetrics {
        estimatedDownlinkBandwidth: StatMetrics;
        serviceMetrics: ReadonlyRecord<string, ServiceMetrics>;
        totals: ServiceMetrics;
    }
    Index

    Properties

    estimatedDownlinkBandwidth: StatMetrics

    The estimated client bandwidth. Uses data points from totals, network information downlink changes, and the fallback P90 downlink estimate.

    serviceMetrics: ReadonlyRecord<string, ServiceMetrics>

    Requests that were made with a service id will have their statistics tracked in this map. key - The serviceId provided to fetch options. value - cumulative metrics for that service.

    Totals for all service metrics, including requests without service ids.