Skip to content

Instantly share code, notes, and snippets.

@mafr
mafr / PrometheusDemoApplication.java
Created August 25, 2018 05:25
Prometheus Health Check
package de.mafr.demo.prometheus;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryCustomizer;
import org.springframework.boot.actuate.health.HealthEndpoint;
import org.springframework.boot.actuate.health.Status;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;