...
Code Block |
---|
|
$ curl http://localhost:8080/actuator/info -i -X GET |
Expand |
---|
|
Code Block |
---|
| {
"git": {
"commit": {
"message": {
"short": "Sample Commit from CPS Team"
},
"user": {
"name": "cpsteam",
"email": "CPSTeam@est.tech"
},
"id": {
"full": "sample-commit-id-hash-which-can-be-copied-and-code-can-be-checked-out"
}
},
"branch": "master",
"build": {
"time": "2024-11-06T16:03:37.037Z",
"version": "3.5.5-SNAPSHOT"
}
}
} |
|
Health: /actuator/health
The set of endpoints providing the current status of various components and the application in general.
The status returned is one of below:
...