@akamai/openapi-ts
    Preparing search index...

    Type Alias GetNodeBalancerStatsResponses

    type GetNodeBalancerStatsResponses = {
        "200": {
            data: {
                connections: number[];
                traffic: { in: number[]; out: number[] };
            };
            title: string;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            connections: number[];
            traffic: { in: number[]; out: number[] };
        };
        title: string;
    }

    Stats for this NodeBalancer.

    Type Declaration

    • data: { connections: number[]; traffic: { in: number[]; out: number[] } }

      The data returned about this NodeBalancers.

      • connections: number[]

        An array of key/value pairs representing unix timestamp and reading for connections to this NodeBalancer.

      • traffic: { in: number[]; out: number[] }

        Traffic statistics for this NodeBalancer.

        • in: number[]

          An array of key/value pairs representing unix timestamp and reading for inbound traffic.

        • out: number[]

          An array of key/value pairs representing unix timestamp and reading for outbound traffic.

    • title: string

      The title for the statistics generated in this response.