https://github.com/irof/spring-boot-actuator-sample
https://github.com/irof/spring-boot-actuator-sample
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/irof/spring-boot-actuator-sample
- Owner: irof
- Created: 2020-09-19T10:20:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-19T10:21:33.000Z (almost 6 years ago)
- Last Synced: 2025-04-28T12:57:52.364Z (about 1 year ago)
- Language: Java
- Size: 55.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spring-boot-actuator-sample
```
% curl http://localhost:8080/actuator/health | jq
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 202 0 202 0 0 50500 0 --:--:-- --:--:-- --:--:-- 67333
{
"status": "UP",
"components": {
"diskSpace": {
"status": "UP",
"details": {
"total": 499963174912,
"free": 291946053632,
"threshold": 10485760,
"exists": true
}
},
"myJava": {
"status": "I <3 Java!"
},
"ping": {
"status": "UP"
}
}
}
```