Skip to main content
Filter by
Sorted by
Tagged with
52 votes
6 answers
99k views

I'm using secrets to manage username, password, and dbname with a Docker stack using Postgres as a DB. I now want to use the healthcheck feature that Docker provides. docker-compose.yml: x-db-secrets: ...
logicOnAbstractions's user avatar
24 votes
7 answers
36k views

I am running a Spring Boot application within a Docker container, using the Docker file to start the application within the container. How can I check the health of the Spring Boot application within ...
Sandeep muthyapu's user avatar
21 votes
2 answers
12k views

I've looked around from place to place but I am assuming one is an older way of doing things, but is there a more deeper difference to adding Health Check Endpoints to the middleware? In Startup....
Cowboy's user avatar
  • 1,126
13 votes
3 answers
10k views

The docker docs say what a HEALTHCHECK instruction is and how to check the health of a container. But I am not able to figure out what happens when healthcheck fails. Like will the container be ...
samshers's user avatar
  • 3,780
11 votes
4 answers
28k views

Elasticsearch healthcheck on docker-compose stops any dependent services because the container is always unhealthy. I see this when I run docker ps -a --format "table {{.Names}}\t{{.Image}}\t{{....
vamsiampolu's user avatar
  • 6,744
10 votes
2 answers
10k views

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. ...
Elsassmania's user avatar
10 votes
2 answers
13k views

In my work I was asked to implement health checks into an ASP.NET Web API 2 written in C#. I have searched but all the documentation is for ASP.NET Core and its implementation, does anyone know how to ...
Camilo Garcia's user avatar
9 votes
3 answers
19k views

I am deploying some services using Docker Compose. I want to check that my containers are healthy using healthcheck (see Docker Compose documentation here). Let's consider the following code. It works ...
scūriolus's user avatar
  • 1,040
8 votes
5 answers
10k views

I'm creating my first app on AWS App Runner. I have a simple nginx Docker image that works locally by serving html on localhost:8080. When I try to deploy it, the result is "Create Failed". ...
Spencer Goff's user avatar
  • 1,191
8 votes
4 answers
30k views

I have to check whether my service / app works or not. I've added dependency <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator&...
Programmer's user avatar
7 votes
2 answers
12k views

In order to ensure the health check of my container, I need to perform test calls to multiple URLS. curl -f http://example.com and curl -f http://example2.com Is it possible to perform multiple curl ...
Appu's user avatar
  • 223
7 votes
1 answer
5k views

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" /> <...
Marco Siffert's user avatar
6 votes
1 answer
5k views

i have an image that is based on an image with health check. In my case its the oracle database image container-registry.oracle.com/database/express:21.3.0-xe. However, when I build my image with ...
xani's user avatar
  • 834
6 votes
1 answer
2k views

Platforms such as Kubernetes have support for liveness and readiness probes: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes Basically, the (web) ...
Andy Verbunt's user avatar
5 votes
2 answers
4k views

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!
Diogo Machado's user avatar
5 votes
1 answer
3k views

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 ...
hbe's user avatar
  • 53
5 votes
1 answer
12k views

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 empty ...
Prawin's user avatar
  • 1,278
5 votes
1 answer
2k views

I want to add an Ocelot Gateway healthcheck, but This is nowhere to be found as default nuget package from AspNetCore.HealthChecks.??? . Is this not done usually? When adding the healthcheck myself, ...
RubenHerman's user avatar
  • 1,884
5 votes
1 answer
10k views

In Spring-Boot 2.4, I have this problem with the Actuator health endpoint and readiness probe. When one of my custom key components is down, the /health/readiness endpoint says DOWN and the /health ...
AdrienW's user avatar
  • 3,552
5 votes
1 answer
5k views

I have a php project to test healthchecks with three files in it: index.php <html> <head> <title>PHP Test</title> </head> <body> <h1>Hi from ...
stoic's user avatar
  • 4,838
4 votes
3 answers
12k views

I'm using .NET Core 3.1 and trying to set up health checks and running into an odd issue and need some help. When I go to the basic health check URL (https://localhost:5001/hc), I get the following: { ...
Dan Champagne's user avatar
4 votes
2 answers
5k views

I'm trying to setup healthchecks for some required services to my dotnet core 3.1 API and I'm struggling on Amazon DynamoDB check. We're using the Xabaril healthcheck packages and the DynamoDb one ask ...
Diego Rafael Oliveira Souza's user avatar
4 votes
1 answer
5k views

I am trying to learn more about .Net Core Health Checks. I understand the concept of a web hook i.e. it notifies you that an event has occurred in a third party application. However, I do not ...
w0051977's user avatar
  • 16k
4 votes
1 answer
4k views

What is the proper way to healthcheck Redis from application? Is there any analogue of sql: SELECT 1;?
Rudziankoŭ's user avatar
  • 11.3k
4 votes
1 answer
5k views

I am trying to create a server with two services and a HealthCheck in each one, so I can check them independently and use reflection to know the methods exposed in each one. I have hardcoded one ...
Occam's razor's user avatar

1
2 3 4 5
9