Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.34 KB

README.md

File metadata and controls

38 lines (33 loc) · 1.34 KB

spring-proxy-actuator

Maven Central Codacy Badge Coverage Status Build Status

SpringBoot Proxy Actuator

Maven

<dependency>
	<groupId>com.itelg.spring</groupId>
	<artifactId>spring-proxy-actuator</artifactId>
	<version>0.2.0-RELEASE</version>
</dependency>

Example

@Bean
public HealthIndicator proxyHealthIndicator()
{
	return new ProxyHealthIndicator("192.168.2.1");
}

Response (health.json)

{
	"status" : "UP",
	"proxy" : 
	{
		"status" : "UP"
	}
}