Groundwork Open Source metric API

The metric API from Groundwork Open Source — 1 operation(s) for metric.

OpenAPI Specification

groundwork-open-source-metric-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  contact: {}
  title: Groundwork Open Source agent metric API
tags:
- name: metric
paths:
  /metrics:
    get:
      consumes:
      - application/json
      description: The following API endpoint can be used to get list of metrics from the server.
      parameters:
      - description: Auth header
        in: header
        name: GWOS-APP-NAME
        required: true
        type: string
      - description: Auth header
        in: header
        name: GWOS-API-TOKEN
        required: true
        type: string
      produces:
      - application/json
      responses:
        '200':
          description: OK
          schema: {}
        '401':
          description: Unauthorized
          schema:
            type: string
        '500':
          description: Internal server error
          schema:
            type: string
      tags:
      - metric