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

    Type Alias PostReadMetricResponses

    type PostReadMetricResponses = {
        "200": {
            data: {
                result: {
                    metric: { [key: string]: string };
                    values: (number | string)[][];
                }[];
                resultType: "matrix";
            };
            isPartial: boolean;
            stats: { executionTimeMsec: number; seriesFetched: string };
            status: string;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            result: {
                metric: { [key: string]: string };
                values: (number | string)[][];
            }[];
            resultType: "matrix";
        };
        isPartial: boolean;
        stats: { executionTimeMsec: number; seriesFetched: string };
        status: string;
    }

    Metrics returned.

    Type Declaration

    • data: {
          result: {
              metric: { [key: string]: string };
              values: (number | string)[][];
          }[];
          resultType: "matrix";
      }

      A collection of information for the metric.

      • result: { metric: { [key: string]: string }; values: (number | string)[][] }[]

        Pairs of a specific metric and its corresponding values.

      • resultType: "matrix"

        The type of result, which will always be matrix in this context.

    • isPartial: boolean

      Indicates whether the result is partial. A result of false indicates the response is complete, while true indicates a partial response.

    • stats: { executionTimeMsec: number; seriesFetched: string }

      Statistics for a query against a metric.

      • executionTimeMsec: number

        The time taken to execute the query, in milliseconds.

      • seriesFetched: string

        The number of metric series fetched in the query.

    • status: string

      The status of the query execution, such as success.