health-check Questions
2
Is there any way to enable health check via cli in azure app services? I see that we can modify some configurations but not an option to enable/disable the feature.
Thank you!
Emoryemote asked 23/4, 2021 at 15:46
1
Solved
I am working with microservice (multiple services) and want to have HealthCheck service which I can call and get health of all the running service. I wan't to trigger healthcheck for each of the se...
Padriac asked 21/5, 2020 at 10:21
1
Solved
I added .NET Core Health Checks to my app.
I want to use tags to only run one check if it's a basic check or all checks for a more detailed check.
This is what I've got:
services.AddHealthChecks()
...
Nikolaus asked 5/10, 2020 at 12:17
1
I am using a .NET Core 3.1 Web app. The following packages are installed:
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.HealthChecks" Version="2.2.0" />
<...
Goldin asked 13/11, 2020 at 10:10
1
i have developed an ASP.NET Core 3.1 MVC Application with customized Health Check. It's perfectly working fine as shown below.
However, the UI is always empty as the /health-api always returns e...
Milissa asked 24/5, 2020 at 2:54
2
Solved
I have different classes which inherit of a base class. The base class implements the interface IHealthCheck. Each class has a constructor which need a logger and parameters according to the class....
Dibri asked 26/6, 2020 at 9:55
2
Solved
I have a microservice that is not a webservice.
It is a Spring Boot (1.5) CommandLineRunner app that does not have a need to expose an API or do anything with http.
However, I need to give it a ...
Kessiah asked 4/6, 2020 at 2:8
2
Solved
I recently set up healthchecks in my docker-compose config.
It is doing great and I like it. Here's a typical example:
services:
app:
healthcheck:
test: curl -sS http://127.0.0.1:4000 || exit ...
Newsstand asked 3/2, 2020 at 11:26
© 2022 - 2025 — McMap. All rights reserved.