Issue I want to add a healthcheck to my container, and it’s working fine, but it’s spamming my container log every time it checks, which is noisy and makes gleaning the important stuff out: today at 12:44:38 AM127.0.0.1 – –
Continue readingTag: health-check
[SOLVED] ASP.NET Core HealthChecks
Issue Can anyone please explain what the "timeout" param does in .AddUrlGroup()? Is it the timeout of httpClient – meaning how long it will wait for the response from that endpoint? Or the frequency at which this Url will be
Continue reading[SOLVED] Docker HEALTHCHECK not working as expected
Issue 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 container: <?php echo gethostname(); ?> </h1> </body> </html> health.php <html> <head> <title>PHP Test</title> </head> <body> <h1>hi</h1> </body>
Continue reading[SOLVED] Bypass gRPC interceptor for specific endpoint
Issue Lately I have been struggling with one problem : I can’t ignore io.grpc.ServerInterceptor for some endpoints, in my case the health-check one, provided under the hood by io.grpc.protobuf.services.HealthServiceImpl The only option that I could find is to define a
Continue reading[SOLVED] management.endpoint.health.group.readiness.include=* bug – Spring Boot Actuator
Issue A bug in Spring Boot Actuator exists whereby if certain properties are used, management.endpoint.health.probes.add-additional-paths=true doesn’t work in exposing the readiness endpoint at /readyz and the liveness endpoint at /livez. You get a whitelabel error page. This application has no
Continue reading[SOLVED] AWS ECS service monitoring (using multiple endpoints)
Issue We are currently deploying multiple instances (a front-end, a back-end, a database, etc..). All are deployed and configured using a CloudFormation script so we can deploy our solution quickly. One of our central server has multiple connections to other
Continue reading[SOLVED] docker-compose health check passed, still unhealthy
Issue condition was removed compose spec in versions 3.0 to 3.8 but is now back! Using version of the compose spec v3.9, you can use condition as an option in long syntax form of depends_on. I use docker compose to
Continue reading[SOLVED] How to change the default health endpoint used by spring boot admin
Issue I’d like to have a new on-demand health check endpoint for my service through implementation of indicator. The problem was the on-demand one would be called by default `/actuator/health`, so I have split the default health endpoint into two
Continue reading[SOLVED] ASP.NET Healthchecks Not Working on Blazor App Deployment
Issue I have built a Blazor server app and deployed it on IIS. All of its core functionality is running as expected aside from the healthchecks. When I run the Blazor app via visual studio, I get the following results
Continue reading[SOLVED] How to do a health check on a POST url in ASP.NET/blazor
Issue I am trying to implement health checks in my blazor application. To do so, I have used the Microsoft.AspNetCore.Diagnostics.HealthChecks package among others. Below you can see sql and url health checks. startup.cs //using AjuaBlazorServerApp.Data; using HealthChecks.UI.Client; using Microsoft.AspNetCore.Builder; using
Continue reading