Dropwizard Diagnostics API

JVM diagnostic endpoints.

OpenAPI Specification

dropwizard-diagnostics-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Dropwizard Admin Diagnostics API
  description: REST API provided by the Dropwizard admin servlet, exposing health checks, metrics, thread dumps, and operational tasks on the admin port.
  version: 4.0.0
  contact:
    name: Dropwizard
    url: https://www.dropwizard.io/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:8081
  description: Default Dropwizard admin port
tags:
- name: Diagnostics
  description: JVM diagnostic endpoints.
paths:
  /threads:
    get:
      operationId: getThreadDump
      summary: Get thread dump
      description: Returns a thread dump of all running threads in the JVM.
      tags:
      - Diagnostics
      responses:
        '200':
          description: Thread dump output.
          content:
            text/plain:
              schema:
                type: string