This Prometheus exporter operates similar to the Blackbox exporters. It's used to monitor some of our Spring boot microservices and exposes the service version along with the health status.
target
: info endpoint URL
docker build -t spring-ms-exporter .
docker -d -p 9117:9117 --name spring-ms-exporter spring-ms-exporter
The related metrics can then be found under:
http://localhost:9117/probe?target=<service-url>
MIT License