Apache Dubbo metrics API

The metrics API from Apache Dubbo — 4 operation(s) for metrics.

Operations 4

GET /api/{env}/metrics/cluster Apache Dubbo Show Cluster Overview
GET /api/{env}/metrics/flow Apache Dubbo Show Prometheus Collected Metrics
GET /api/{env}/metrics/metadata Apache Dubbo Show Metadata of the Cluster, Like Dubbo Versions, Protocols, Etc.
GET /api/{env}/version Apache Dubbo Show Basic Information of the Admin Process

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/apache-dubbo-metrics-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

apache-dubbo-metrics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: This is a dubbo-admin swagger ui server.
  title: Dubbo-Admin ConditionRule Metrics API
  contact: {}
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
- url: https://127.0.0.1:38080/
tags:
- name: metrics
paths:
  /api/{env}/metrics/cluster:
    get:
      description: show cluster overview
      tags:
      - metrics
      summary: Apache Dubbo Show Cluster Overview
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/model.ClusterMetricsRes'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/model.HTTPError'
  /api/{env}/metrics/flow:
    get:
      description: show Prometheus collected metrics
      tags:
      - metrics
      summary: Apache Dubbo Show Prometheus Collected Metrics
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/model.FlowMetricsRes'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/model.HTTPError'
  /api/{env}/metrics/metadata:
    get:
      description: show metadata of the cluster, like dubbo versions, protocols, etc.
      tags:
      - metrics
      summary: Apache Dubbo Show Metadata of the Cluster, Like Dubbo Versions, Protocols, Etc.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/model.Metadata'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/model.HTTPError'
  /api/{env}/version:
    get:
      description: show basic information of the Admin process
      tags:
      - metrics
      summary: Apache Dubbo Show Basic Information of the Admin Process
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/version.Version'
components:
  schemas:
    model.HTTPError:
      type: object
      properties:
        error:
          description: error message
          type: string
    version.Version:
      type: object
      properties:
        buildDate:
          type: string
        compiler:
          type: string
        gitCommit:
          type: string
        gitTreeState:
          type: string
        gitVersion:
          type: string
        goVersion:
          type: string
        platform:
          type: string
    model.FlowMetricsRes:
      type: object
      properties:
        data:
          type: object
          additionalProperties:
            type: number
    model.Metadata:
      type: object
      properties:
        configCenter:
          type: string
        metadataCenter:
          type: string
        protocols:
          type: array
          items: {}
        registry:
          type: string
        rules:
          type: array
          items:
            type: string
        versions:
          type: array
          items: {}
    model.ClusterMetricsRes:
      type: object
      properties:
        data:
          type: object
          additionalProperties:
            type: integer