Actuator - ps1-ch/test GitHub Wiki
$ curl -s http://localhost:8080/actuator|jq
{
"timestamp": "2020-11-26T21:56:42.433+00:00",
"status": 401,
"error": "Unauthorized",
"message": "",
"path": "/actuator"
}
Basic Authentication
$ curl -s -u user:password http://localhost:8080/actuator|jq
{
"_links": {
"self": {
"href": "http://localhost:8080/actuator",
"templated": false
},
"health-path": {
"href": "http://localhost:8080/actuator/health/{*path}",
"templated": true
},
"health": {
"href": "http://localhost:8080/actuator/health",
"templated": false
},
"info": {
"href": "http://localhost:8080/actuator/info",
"templated": false
}
}
}