Function MetricsApiAxiosParamCreator

  • MetricsApi - axios parameter creator

    Parameters

    Returns {
        adminGetMetrics: ((groupId, appId, start, end, granularity, options?) => Promise<RequestArgs>);
    }

    • adminGetMetrics: ((groupId, appId, start, end, granularity, options?) => Promise<RequestArgs>)
        • (groupId, appId, start, end, granularity, options?): Promise<RequestArgs>
        • Retrieves a variety of metrics, including: Compute Time, Data Transfer, Sync Minutes, Requests Succeeded, Requests Failed. For a complete list of available metrics, see App Services Metrics Reference.

          Parameters

          • groupId: any

            An Atlas Project/Group ID.

          • appId: any

            The ObjectID of your application. The App Services API Project and Application IDs section demonstrates how to find this value.

          • start: any

            The ISO-8601 date and time of the start of the query period (e.g. &quot;2022-10-27T14:01:01Z&quot;).

          • end: any

            The ISO-8601 date and time of the end of the query period (e.g. &quot;2022-12-27T14:01:01Z&quot;).

          • granularity: any

            Specifies the granularity of the query period as an ISO-8601 duration value. Examples include &quot;P31D&quot; (31 day), &quot;PT1H&quot; (1 hour), and &quot;PT5M&quot; (5 minutes).

          • Optional options: AxiosRequestConfig<any> = {}

            Override http request option.

          Returns Promise<RequestArgs>

          Summary

          Retrieve App Services metrics

          Throws

    Export

Generated using TypeDoc