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: docs/docs/v4/management/cloud-foundry.md
+66Lines changed: 66 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,10 @@ Each key must be prefixed with `Management:Endpoints:CloudFoundry`.
27
27
|`ApplicationId`| The ID of the application used in permission checks ||
28
28
|`CloudFoundryApi`| The URL of the Cloud Foundry API ||
29
29
30
+
> [!TIP]
31
+
> The preceding settings apply only to the `/cloudfoundryapplication` hypermedia endpoint.
32
+
> To turn off *all* management endpoints starting with this path, set `Management:CloudFoundry:Enabled` to `false`.
33
+
30
34
## Enable HTTP Access
31
35
32
36
The URL path to the endpoint is computed by combining the global `Management:Endpoints:Path` setting with the `Path` setting described in the preceding section.
@@ -79,3 +83,65 @@ In addition, the endpoints may be secured by whatever security mechanism the app
79
83
> [!CAUTION]
80
84
> An authorization policy on `/actuator` also applies to `/cloudfoundryapplication`, which then breaks the integration with Apps Manager.
81
85
> To prevent public access to `/actuator` when running on Cloud Foundry, consider configuring actuators to [use an alternate port](./using-endpoints.md#configure-global-settings).
86
+
87
+
## Sample Output
88
+
89
+
This endpoint returns a list of management endpoints, including itself.
Copy file name to clipboardExpand all lines: docs/docs/v4/management/health.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -129,9 +129,6 @@ When `ShowComponents` and `ShowDetails` are set to `Always`, or when set to `Whe
129
129
{
130
130
"status": "UP",
131
131
"components": {
132
-
"ping": {
133
-
"status": "UP"
134
-
},
135
132
"diskSpace": {
136
133
"status": "UP",
137
134
"details": {
@@ -141,6 +138,9 @@ When `ShowComponents` and `ShowDetails` are set to `Always`, or when set to `Whe
141
138
"path": "C:\\source\\Repository\\src\\Project",
142
139
"exists": true
143
140
}
141
+
},
142
+
"ping": {
143
+
"status": "UP"
144
144
}
145
145
}
146
146
}
@@ -170,7 +170,7 @@ If you want to check application health based on a subset of health contributors
170
170
}
171
171
```
172
172
173
-
While group names are case-sensitive, the entries in `Include` are case-insensitive and activate only health contributors with a matching `Id`, and/or ASP.NET health check registrations with a matching name.
173
+
Group names and the entries in `Include` are case-insensitive and activate only health contributors with a matching `Id`, and/or ASP.NET health check registrations with a matching name.
174
174
175
175
For any group that has been defined, you can access health information from the group by appending the group name to the HTTP request URL. For example: `/actuator/health/example-group`.
176
176
@@ -348,9 +348,6 @@ When `ShowComponents` and `ShowDetails` are set to `Always`, or when set to `Whe
348
348
"status": "WARNING",
349
349
"description": "This health check does not check anything"
350
350
},
351
-
"ping": {
352
-
"status": "UP"
353
-
},
354
351
"diskSpace": {
355
352
"status": "UP",
356
353
"details": {
@@ -360,6 +357,9 @@ When `ShowComponents` and `ShowDetails` are set to `Always`, or when set to `Whe
Copy file name to clipboardExpand all lines: docs/docs/v4/management/httpexchanges.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
The Steeltoe HTTP Exchanges endpoint provides the ability to view the last several requests sent to your application.
4
4
5
-
When you activate this endpoint, an `IHttpExchangesRepository` implementation is registered, which stores HTTP request/response information in memory. This endpoint provides access to that information.
5
+
When you activate this endpoint, an `IHttpExchangeRecorder` implementation is registered, which stores HTTP request/response information in memory. This endpoint provides access to that information.
0 commit comments