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
+18-8Lines changed: 18 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -197,8 +197,6 @@ app.UseGraphQLPlayground(
197
197
198
198
Based on cloud-native concepts, **Readiness** and **Liveness** integrity verification strategies were implemented.
199
199
200
-
If using [xabarilcoding/healthchecksui](https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks/blob/master/doc/ui-docker.md) container image it will responde on `http://localhost:8000/healthchecks-ui/`.
201
-
202
200
> `/health`
203
201
> Just check if the instance is running.
204
202
@@ -208,14 +206,26 @@ If using [xabarilcoding/healthchecksui](https://github.com/Xabaril/AspNetCore.Di
208
206
> `/health/ready`
209
207
> Check if the instance and all the dependencies are ready to attend to all functionalities.
210
208
211
-
> `/healthz`
212
-
> HealthReport specific for HealthCheck-UI.
213
-
214
209
Web API
215
210
216
211
`http://localhost:5000/health/ready`
217
212
218
-

213
+
```json
214
+
{
215
+
"status": "Healthy",
216
+
"totalDuration": "00:00:00.2344435",
217
+
"entries": {
218
+
"Sql Server (Ready)": {
219
+
"data": {},
220
+
"duration": "00:00:00.2251420",
221
+
"status": "Healthy",
222
+
"tags": [
223
+
"ready"
224
+
]
225
+
}
226
+
}
227
+
}
228
+
```
219
229
220
230
Web MVC
221
231
@@ -234,8 +244,8 @@ public void Configure(IApplicationBuilder app)
234
244
{
235
245
endpoints.MapDumpConfig(
236
246
pattern: "/dump-config",
237
-
configInfo: (_configuration as IConfigurationRoot).GetDebugView(),
238
-
isDevelopment: _env.IsDevelopment());
247
+
configurationRoot: _configuration as IConfigurationRoot,
0 commit comments