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

    Type Alias GetMonitorInformationResponses

    type GetMonitorInformationResponses = {
        "200": {
            data: {
                available_aggregate_functions: (
                    "min"
                    | "max"
                    | "avg"
                    | "sum"
                    | "rate"
                    | "increase"
                )[];
                dimensions: { dimension_label: string; label: string; values: string[] }[];
                is_alertable: boolean;
                label: string;
                metric: string;
                metric_type: "counter" | "histogram" | "gauge" | "summary";
                scrape_interval: string;
                unit:
                    | "%"
                    | "Bytes"
                    | "sec"
                    | "bps"
                    | "msec"
                    | "Bps"
                    | "KB"
                    | "MB"
                    | "GB"
                    | "rate"
                    | "percentile"
                    | "ratio"
                    | "OPS"
                    | "IOPS";
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            available_aggregate_functions: (
                "min"
                | "max"
                | "avg"
                | "sum"
                | "rate"
                | "increase"
            )[];
            dimensions: { dimension_label: string; label: string; values: string[] }[];
            is_alertable: boolean;
            label: string;
            metric: string;
            metric_type: "counter" | "histogram" | "gauge" | "summary";
            scrape_interval: string;
            unit:
                | "%"
                | "Bytes"
                | "sec"
                | "bps"
                | "msec"
                | "Bps"
                | "KB"
                | "MB"
                | "GB"
                | "rate"
                | "percentile"
                | "ratio"
                | "OPS"
                | "IOPS";
        }[];
        page: number;
        pages: number;
        results: number;
    }

    Returns a paginated list of metric information.

    Type Declaration

    • data: {
          available_aggregate_functions: (
              "min"
              | "max"
              | "avg"
              | "sum"
              | "rate"
              | "increase"
          )[];
          dimensions: { dimension_label: string; label: string; values: string[] }[];
          is_alertable: boolean;
          label: string;
          metric: string;
          metric_type: "counter" | "histogram" | "gauge" | "summary";
          scrape_interval: string;
          unit:
              | "%"
              | "Bytes"
              | "sec"
              | "bps"
              | "msec"
              | "Bps"
              | "KB"
              | "MB"
              | "GB"
              | "rate"
              | "percentile"
              | "ratio"
              | "OPS"
              | "IOPS";
      }[]
    • page: number

      The current page.

    • pages: number

      The total number of pages.

    • results: number

      The total number of results.