Installing the Monitor Micrometer Extension¶
Visit the website download page and download geoserver-2.27.x-monitor-micrometer-plugin.zip.
Extract the downloaded archive and copy the JAR files into the servlet container’s
WEB-INF/lib
directory.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"
Previous: Monitoring with Micrometer support