You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@
4
4
5
5
A Symfony 3/4/5 bundle that adds a /health and /info endpoint to your application.
6
6
7
-
The endpoints return JSON responses. The `/info` endpoint tries to give as much information about the currently installed
7
+
The endpoints return JSON responses. The `/internal/info` endpoint tries to give as much information about the currently installed
8
8
version of the application as possible. This information is based on the build path of the installation. But also
9
9
includes the Symfony environment that is currently active and whether or not the debugger is enabled.
10
10
11
-
The `/health` endpoint reports on the health of the application. This information could be used for example by a load
11
+
The `/internal/health` endpoint reports on the health of the application. This information could be used for example by a load
12
12
balancer. Example output:
13
13
14
14
```json
@@ -22,6 +22,8 @@ When a health check failed the HTTP Response status code will be 503. And the JS
22
22
23
23
:exclamation: Please note that only the first failing health check is reported.
24
24
25
+
:exclamation: As of version 3.1.0 we started exposing the `health` and `info` routes on `/internal/`. On the next major version we will stop serving the `info` and `health` enpoints on `/`
0 commit comments