frp

frp Metrics API

Prometheus metrics endpoint

OpenAPI Specification

frp-metrics-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: frp Client Admin Clients Metrics API
  description: The frp client (frpc) exposes a built-in HTTP admin API on its local web server. The API lets operators inspect or hot-reload the client configuration, stop the client, query proxy and visitor status, and (when a configuration store is enabled) manage stored proxy and visitor definitions. All routes (except /healthz) require HTTP Basic authentication using the user and password configured in webServer.user and webServer.password.
  version: 0.0.1
  contact:
    name: frp
    url: https://gofrp.org/
  license:
    name: Apache-2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://{host}:{port}
  description: frp client admin server (frpc webServer)
  variables:
    host:
      default: 127.0.0.1
      description: Address where frpc webServer is listening (webServer.addr)
    port:
      default: '7400'
      description: Port where frpc webServer is listening (webServer.port)
security:
- BasicAuth: []
tags:
- name: Metrics
  description: Prometheus metrics endpoint
paths:
  /metrics:
    get:
      tags:
      - Metrics
      summary: Prometheus metrics
      description: Exposes Prometheus-format metrics for the frps process. Only available when enablePrometheus is set to true in the server configuration.
      operationId: getMetrics
      responses:
        '200':
          description: Prometheus metrics in text exposition format
          content:
            text/plain:
              schema:
                type: string
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: HTTP Basic auth using webServer.user and webServer.password