> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chronosphere.io/llms.txt
> Use this file to discover all available pages before exploring further.

# ListAzureMetricsIntegrations



## OpenAPI

````yaml openapi/api_v1_config_openapi3_DOCUMENTATION_ONLY.json GET /api/v1/config/azure-metrics-integrations
openapi: 3.0.3
info:
  description: >

    The Config API provides standard HTTP/JSON REST endpoints for creating,
    reading,

    updating, deleting, and listing configurable Chronosphere resources.


    Use this link to download the raw Swagger specification:

    <a href="/api/v1/config/swagger.json">/api/v1/config/swagger.json</a>
  title: Config V1 API
  version: v1
servers:
  - url: https://{tenant}.chronosphere.io
    variables:
      tenant:
        default: tenant
        description: tenant ID assigned by the service provider
security:
  - ApiKeyAuth: []
tags:
  - name: ConfigV1
paths:
  /api/v1/config/azure-metrics-integrations:
    get:
      tags:
        - AzureMetricsIntegration
      operationId: ListAzureMetricsIntegrations
      parameters:
        - description: >-
            Sets the preferred number of items to return per page. If set to
            `0`, the

            server will use its default value. Regardless of the value
            specified, clients

            must never assume how many items will be returned.
          in: query
          name: page.max_size
          schema:
            format: int64
            type: integer
        - description: >-
            An opaque page token that identifies which page the client should
            request.

            An empty value indicates the first page.
          in: query
          name: page.token
          schema:
            type: string
        - description: >-
            Filters results by slug, where any AzureMetricsIntegration with a
            matching slug in the given list (and matches all other filters) will
            be returned.
          in: query
          name: slugs
          schema:
            items:
              type: string
            type: array
        - description: >-
            Filters results by name, where any AzureMetricsIntegration with a
            matching name in the given list (and matches all other filters) will
            be returned.
          in: query
          name: names
          schema:
            items:
              type: string
            type: array
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/configv1ListAzureMetricsIntegrationsResponse
          description: A successful response.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiError'
          description: An unexpected error response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/genericError'
          description: An undefined error response.
components:
  schemas:
    configv1ListAzureMetricsIntegrationsResponse:
      properties:
        azure_metrics_integrations:
          items:
            $ref: '#/components/schemas/configv1AzureMetricsIntegration'
          type: array
        page:
          $ref: '#/components/schemas/configv1PageResult'
      type: object
    apiError:
      properties:
        message:
          description: An error message describing what went wrong.
          type: string
      type: object
    genericError:
      additionalProperties: true
      type: object
    configv1AzureMetricsIntegration:
      properties:
        count_metrics_enabled:
          description: Enables Azure count metrics for the configured resources.
          type: boolean
        created_at:
          description: >-
            Timestamp of when the AzureMetricsIntegration was created. Cannot be
            set by clients.
          format: date-time
          readOnly: true
          type: string
        name:
          description: >-
            The name of the AzureMetricsIntegration. You can modify this value
            after the AzureMetricsIntegration is created.
          type: string
        principal:
          allOf:
            - $ref: '#/components/schemas/AzureMetricsIntegrationAzurePrincipal'
          description: The Azure principal that should be used for this config.
        propagate_tags:
          description: >-
            Specifies whether Azure resource, group, and subscription tags
            should be propagated as metric labels.
          type: boolean
        scrape_config:
          allOf:
            - $ref: '#/components/schemas/AzureMetricsIntegrationAzureScrapeConfig'
          description: Specifies the scrape config for this integration.
        slug:
          description: >-
            The unique identifier of the AzureMetricsIntegration. If a `slug`
            isn't provided, one is generated based on the `name` field. You
            can't modify this field after the AzureMetricsIntegration is
            created.
          type: string
        updated_at:
          description: >-
            Timestamp of when the AzureMetricsIntegration was last updated.
            Cannot be set by clients.
          format: date-time
          readOnly: true
          type: string
        usage_metrics_enabled:
          description: >-
            Enables collection of azure usage metrics under this principal
            (Microsoft.Compute, Microsoft.Network, Microsoft.Storage).
          type: boolean
      required:
        - name
      type: object
    configv1PageResult:
      properties:
        next_token:
          description: |-
            An opaque page token that identifies the next page of items that the
            client should request. An empty value indicates that there are no
            more items to return.
          type: string
      type: object
    AzureMetricsIntegrationAzurePrincipal:
      properties:
        client_id:
          description: Specifies the OAuth2 client ID of the managed identity principal.
          type: string
        tenant_id:
          description: >-
            Specifies the ID of the Azure tenant that hosts the managed identity
            principal.
          type: string
      type: object
    AzureMetricsIntegrationAzureScrapeConfig:
      properties:
        locations:
          description: >-
            Locations to be ingested for this integration (these apply to all
            subscriptions; use empty for all locations).
          items:
            type: string
          type: array
        resource_types:
          description: Metric groups to be ingested for this integration.
          items:
            $ref: '#/components/schemas/AzureMetricsIntegrationAzureResourceType'
          type: array
        subscription_ids:
          description: >-
            Subscriptions to be targeted for this integration (use empty for all
            subscriptions).
          items:
            type: string
          type: array
      type: object
    AzureMetricsIntegrationAzureResourceType:
      properties:
        metric_names:
          description: >-
            List of metric names to be targeted (these apply to this resource
            type; use empty for all metrics).
          items:
            type: string
          type: array
        name:
          description: Name of the resource type.
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: Chronosphere API token
      in: header
      name: API-Token
      type: apiKey

````