Installing the Monitor Micrometer Extension¶
- Visit the website download page and download monitor-micrometer.
- Extract the downloaded archive and copy the JAR files into the servlet container's
WEB-INF/libdirectory. - 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:
::: admonition Release :::
docker run -it -p8080:8080 \ --env INSTALL_EXTENSIONS=true \ --env STABLE_EXTENSIONS="monitor" \ --env COMMUNITY_EXTENSIONS="monitor-micrometer" \ docker.osgeo.org/geoserver:2.28.2::: admonition Nightly Build :::
If using GeoServer in Docker Compose, use this instead:
::: admonition Release :::
services: geoserver: image: docker.osgeo.org/geoserver:2.28.2 ports: - "8080:8080" environment: INSTALL_EXTENSIONS: true STABLE_EXTENSIONS: "monitor" COMMUNITY_EXTENSIONS: "monitor-micrometer"::: admonition Nightly Build :::