|
| 1 | +# Setup |
| 2 | + |
| 3 | +GET => `http://localhost:8080/api/greeting` |
| 4 | + |
| 5 | +# Actuator |
| 6 | + |
| 7 | +`http://localhost:8080/actuator` |
| 8 | + |
| 9 | +```json |
| 10 | +{ |
| 11 | + "_links": { |
| 12 | + "self": { |
| 13 | + "href": "http://localhost:8080/actuator", |
| 14 | + "templated": false |
| 15 | + }, |
| 16 | + "beans": { |
| 17 | + "href": "http://localhost:8080/actuator/beans", |
| 18 | + "templated": false |
| 19 | + }, |
| 20 | + "caches": { |
| 21 | + "href": "http://localhost:8080/actuator/caches", |
| 22 | + "templated": false |
| 23 | + }, |
| 24 | + "caches-cache": { |
| 25 | + "href": "http://localhost:8080/actuator/caches/{cache}", |
| 26 | + "templated": true |
| 27 | + }, |
| 28 | + "health": { |
| 29 | + "href": "http://localhost:8080/actuator/health", |
| 30 | + "templated": false |
| 31 | + }, |
| 32 | + "health-path": { |
| 33 | + "href": "http://localhost:8080/actuator/health/{*path}", |
| 34 | + "templated": true |
| 35 | + }, |
| 36 | + "info": { |
| 37 | + "href": "http://localhost:8080/actuator/info", |
| 38 | + "templated": false |
| 39 | + }, |
| 40 | + "conditions": { |
| 41 | + "href": "http://localhost:8080/actuator/conditions", |
| 42 | + "templated": false |
| 43 | + }, |
| 44 | + "configprops-prefix": { |
| 45 | + "href": "http://localhost:8080/actuator/configprops/{prefix}", |
| 46 | + "templated": true |
| 47 | + }, |
| 48 | + "configprops": { |
| 49 | + "href": "http://localhost:8080/actuator/configprops", |
| 50 | + "templated": false |
| 51 | + }, |
| 52 | + "env-toMatch": { |
| 53 | + "href": "http://localhost:8080/actuator/env/{toMatch}", |
| 54 | + "templated": true |
| 55 | + }, |
| 56 | + "env": { |
| 57 | + "href": "http://localhost:8080/actuator/env", |
| 58 | + "templated": false |
| 59 | + }, |
| 60 | + "loggers": { |
| 61 | + "href": "http://localhost:8080/actuator/loggers", |
| 62 | + "templated": false |
| 63 | + }, |
| 64 | + "loggers-name": { |
| 65 | + "href": "http://localhost:8080/actuator/loggers/{name}", |
| 66 | + "templated": true |
| 67 | + }, |
| 68 | + "heapdump": { |
| 69 | + "href": "http://localhost:8080/actuator/heapdump", |
| 70 | + "templated": false |
| 71 | + }, |
| 72 | + "threaddump": { |
| 73 | + "href": "http://localhost:8080/actuator/threaddump", |
| 74 | + "templated": false |
| 75 | + }, |
| 76 | + "metrics": { |
| 77 | + "href": "http://localhost:8080/actuator/metrics", |
| 78 | + "templated": false |
| 79 | + }, |
| 80 | + "metrics-requiredMetricName": { |
| 81 | + "href": "http://localhost:8080/actuator/metrics/{requiredMetricName}", |
| 82 | + "templated": true |
| 83 | + }, |
| 84 | + "scheduledtasks": { |
| 85 | + "href": "http://localhost:8080/actuator/scheduledtasks", |
| 86 | + "templated": false |
| 87 | + }, |
| 88 | + "mappings": { |
| 89 | + "href": "http://localhost:8080/actuator/mappings", |
| 90 | + "templated": false |
| 91 | + } |
| 92 | + } |
| 93 | +} |
| 94 | +``` |
0 commit comments