Installing the Monitor Micrometer Extension

  1. Visit the website download page and download geoserver-2.27.x-monitor-micrometer-plugin.zip.

  2. Extract the downloaded archive and copy the JAR files into the servlet container’s WEB-INF/lib directory.

  3. Restart GeoServer.

Note

For the module to work, the Monitoring extension must also be installed.

Installing the Monitor Micrometer Extension with Docker

To run the GeoServer Docker image with the Monitor Micrometer extension installed, use the following command:

docker run -it -p8080:8080 \
  --env INSTALL_EXTENSIONS=true \
  --env STABLE_EXTENSIONS="monitor" \
  --env COMMUNITY_EXTENSIONS="monitor-micrometer" \
  docker.osgeo.org/geoserver:2.27.x

If using GeoServer in Docker Compose, use this instead:

services:
  geoserver:
    image: docker.osgeo.org/geoserver:2.27.x
    ports:
      - "8080:8080"
    environment:
      INSTALL_EXTENSIONS: true
      STABLE_EXTENSIONS: "monitor"
      COMMUNITY_EXTENSIONS: "monitor-micrometer"