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

# List metric source health



## OpenAPI

````yaml https://api.arklow.io/swagger/ui/json get /v1/orgs/{org_id}/metrics/sources/health
openapi: 3.1.0
info:
  title: Arklow
  description: Arklow's API
  version: 0.1.0
servers:
  - url: https://api.arklow.io
    description: Production
  - url: http://localhost:3123
    description: Local development
security:
  - apiKey: []
tags:
  - name: actions
  - name: api_keys
  - name: billing
  - name: capacity-domains
  - name: credentials
  - name: destinations
  - name: invites
  - name: members
  - name: metrics
  - name: notifications
  - name: orgs
  - name: proposals
  - name: rules
  - name: scale-targets
  - name: sources
  - name: users
  - name: ingress
externalDocs:
  url: https://api.arklow.io/swagger/ui
paths:
  /v1/orgs/{org_id}/metrics/sources/health:
    get:
      tags:
        - metrics
      summary: List metric source health
      operationId: get_v1_orgs_by_org_id_metrics_sources_health
      parameters:
        - schema:
            type: integer
            minimum: 1
            maximum: 50
          in: query
          name: take
          required: false
        - schema:
            type: integer
            minimum: 0
          in: query
          name: skip
          required: false
        - schema:
            type: string
            pattern: ^[0-9]+$
          in: path
          name: org_id
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - errors
                properties:
                  data:
                    anyOf:
                      - type: object
                        required:
                          - items
                          - count
                        properties:
                          items:
                            type: array
                            items:
                              type: object
                              required:
                                - id
                                - name
                                - status
                                - poll_interval_seconds
                                - last_collected_at
                                - last_error
                                - last_error_at
                              properties:
                                id:
                                  type: string
                                name:
                                  type: string
                                status:
                                  anyOf:
                                    - type: string
                                      enum:
                                        - active
                                    - type: string
                                      enum:
                                        - paused
                                poll_interval_seconds:
                                  type: integer
                                last_collected_at:
                                  anyOf:
                                    - type: 'null'
                                    - type: string
                                      format: date-time
                                last_error:
                                  anyOf:
                                    - type: 'null'
                                    - type: string
                                last_error_at:
                                  anyOf:
                                    - type: 'null'
                                    - type: string
                                      format: date-time
                          count:
                            type: integer
                      - type: 'null'
                  errors:
                    anyOf:
                      - type: array
                        items:
                          type: object
                          required:
                            - code
                            - message
                          properties:
                            code:
                              type: string
                            message:
                              type: string
                      - type: 'null'
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-arklow-auth
      in: header

````