An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

spring-proxy-actuator
=====================

[![Maven Central](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/com/itelg/spring/spring-proxy-actuator/maven-metadata.xml.svg)](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.itelg.spring%22%20AND%20a%3A%22spring-proxy-actuator%22)
[![Codacy Badge](https://api.codacy.com/project/badge/grade/dec638a857614edfb153ba55d1d29a3b)](https://www.codacy.com/app/eggers-julian/spring-proxy-actuator)
[![Coverage Status](https://coveralls.io/repos/julian-eggers/spring-proxy-actuator/badge.svg?branch=master&service=github)](https://coveralls.io/github/julian-eggers/spring-proxy-actuator?branch=master)
[![Build Status](https://travis-ci.org/julian-eggers/spring-proxy-actuator.svg?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"
}
}
```