Micronaut Environment API

The Environment API from Micronaut — 1 operation(s) for environment.

OpenAPI Specification

micronaut-environment-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Micronaut Management Endpoints Beans Environment API
  description: Micronaut Management provides built-in endpoints for monitoring and managing Micronaut applications. Endpoints include health checks, application info, beans introspection, loggers management, metrics, routes, environment, and thread dumps.
  version: 4.7.0
  contact:
    name: Micronaut Team
    url: https://micronaut.io/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:8080
  description: Default Micronaut server
tags:
- name: Environment
paths:
  /env:
    get:
      operationId: getEnvironment
      summary: Micronaut Environment properties
      description: Returns all resolved configuration properties and their sources
      tags:
      - Environment
      responses:
        '200':
          description: Environment information
          content:
            application/json:
              schema:
                type: object
                properties:
                  activeEnvironments:
                    type: array
                    items:
                      type: string
                  packages:
                    type: array
                    items:
                      type: string