https://github.com/julian-eggers/spring-proxy-actuator
SpringBoot Proxy Actuator
https://github.com/julian-eggers/spring-proxy-actuator
actuator health-check java prometheus proxy spring spring-boot
Last synced: 4 months ago
JSON representation
SpringBoot Proxy Actuator
- Host: GitHub
- URL: https://github.com/julian-eggers/spring-proxy-actuator
- Owner: julian-eggers
- License: mit
- Created: 2016-02-14T15:09:43.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-07-23T04:15:51.000Z (almost 5 years ago)
- Last Synced: 2025-10-27T22:38:06.314Z (8 months ago)
- Topics: actuator, health-check, java, prometheus, proxy, spring, spring-boot
- Language: Java
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
spring-proxy-actuator
=====================
[](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.itelg.spring%22%20AND%20a%3A%22spring-proxy-actuator%22)
[](https://www.codacy.com/app/eggers-julian/spring-proxy-actuator)
[](https://coveralls.io/github/julian-eggers/spring-proxy-actuator?branch=master)
[](https://travis-ci.org/julian-eggers/spring-proxy-actuator)
SpringBoot Proxy Actuator
#### Maven
```xml
com.itelg.spring
spring-proxy-actuator
0.2.0-RELEASE
```
#### Example
```java
@Bean
public HealthIndicator proxyHealthIndicator()
{
return new ProxyHealthIndicator("192.168.2.1");
}
```
#### Response ([health.json](http://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-endpoints.html#production-ready-health))
```json
{
"status" : "UP",
"proxy" :
{
"status" : "UP"
}
}
```