Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
1 answer
105 views

I have the following docker-compose.yaml to roll my application. When I comment depends_on on newseo service, containers start with no issue and all healthchecks are passed. However, when I add ...
waifu_anton's user avatar
1 vote
1 answer
44 views

I have a custom HealthIndicator: @Component("notificationApiDeepCheck") public class ApdpMainNotificationHealthIndicator implements HealthIndicator { @Override public Health health()...
tibotka's user avatar
  • 214
1 vote
0 answers
136 views

We're using MassTransit with Kafka for simple service-to-service communication. A service might read hundreds of records from a source and publish ("produce") the corresponding messages to ...
pikkabird's user avatar
  • 147
0 votes
0 answers
57 views

I'm using Terraform to deploy a simple architecture on AWS: 3 auto-scaling EC2 instances (ASG) in a private subnet and install nginx on the servers ALB in a public subnet Public subnet and private ...
chessy's user avatar
  • 1
-1 votes
1 answer
88 views

I have a dotnet 8 asp core application and I'm trying to add a HealthCheck for my Azure Database using AspNetCore.HealthChecks.MySql nuget and retreiving connection string from Azure App Configuration ...
Terai's user avatar
  • 321
0 votes
1 answer
131 views

I'd like to add a Health Check for an API using AspNetCore.HealthChecks.Uris. Unfortunately, the endpoint that I need to hit requires auth, so the HttpClient that is used for this API is added like: ...
handles's user avatar
  • 7,891
1 vote
1 answer
185 views

The Docker Compose healthcheck fails, but I can login to database just fine. What have I missed? $ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS ...
Stewart's user avatar
  • 18.8k
0 votes
0 answers
740 views

I am configuring my Spring Boot 3.0.2 application with this setting: management.endpoint.health.probes.enabled=true Calling /actuator/health I am getting the following result: "livenessState"...
StSch's user avatar
  • 407
0 votes
1 answer
710 views

I want to use healthchecks and Serilog (with request logging), but I get a flood of useless log events, as well as ones for the failure cases. The v8 docs (and this) show there are differences between ...
lonix's user avatar
  • 22.4k
-4 votes
1 answer
301 views

How to configure health check for kafka Kraft controller ? KAFKA_KRAFT_CLUSTER_ID: ulBKTl3BSeOGO3Hn8SOu-Q KAFKA_CFG_PROCESS_ROLES: controller KAFKA_CFG_CONTROLLER_QUORUM_VOTERS: ...
Mahajan Kashish's user avatar
1 vote
0 answers
81 views

I have four active health checks on each of four clusters using YARP as a load balancer. ProbingCompleted() in the health policy is being fired and I'm recording results for each one. But all I ever ...
Underground's user avatar
2 votes
1 answer
419 views

I had the need to optimze some sql queries with "OPTION (OPTIMIZE FOR UNKNOWN)". I therefore added a custom Interceptor like this: public class QueryHintInterceptor : DbCommandInterceptor { ...
UNeverNo's user avatar
  • 593
0 votes
2 answers
203 views

I am working on a health check PowerShell script that is generating an HTML file. Now, I want to update the solution where If I run the same script again (as a post check) it should create maybe ...
VrindaPrash's user avatar
0 votes
1 answer
100 views

Would the ASP.NET Core HealthCheck middleware that I installed for a Web API project cause any performance issues when running HTTP requests? My questions: Because HealthCheck() was added at startup ...
Ramakrishna.p's user avatar
-1 votes
1 answer
74 views

I am trying to health check a web host containing multiple websites. is is possible to cycle through different sites using the same port using the URI module? I have this code : # Check site directory ...
Mr. E's user avatar
  • 525
0 votes
1 answer
1k views

I'm doing docker-compose with my nestjs app but the healthcheck did not work at all, is there something wrong with my config? version: '3.1' services: backend: image: my_image ports: - ...
Rocky Operation's user avatar
0 votes
0 answers
934 views

I created a script in python (healthcheck.py) to check some dependencies in my container. Something like: try: connect with RabbitMQ sys.exit(0) except Exception: sys....
Estefania De Elia's user avatar
0 votes
1 answer
150 views

(I am using docker swarm) I have a docker container running a kafka instance with a healthcheck checking if a topic called hc has been created. Because of that the docker node ps command shows the ...
jonathan-dev's user avatar
1 vote
1 answer
1k views

I have a Project Sdk="Microsoft.NET.Sdk.Worker" in .net8.0 and I want to use kestrel in this project to host some endpoints for healthcheck. I did this in .net 5.0 but it doesn't work in ....
Amir Borzoei's user avatar
0 votes
0 answers
84 views

"HealthChecksUI": { "HealthChecks": [ { "Name": "My Health Checks", "Uri": "/health" } ], "Webhooks": [ ...
OMM's user avatar
  • 9
0 votes
0 answers
681 views

I'm running a headless (i.e. no HTTP endpoints) .NET 8 worker service on k8s. I'd like to expose gRPC health checks which k8s can use for readiness/liveness probes. However, the examples only seem to ...
silent's user avatar
  • 16.5k
1 vote
1 answer
638 views

Is there a way to use IHealthChecksBuilder.AddTypeActivatedCheck<T>() with a delegate function of Action<IServiceProvider>? I need to be able to access the service container and resolve a ...
Jason Ayer's user avatar
0 votes
0 answers
132 views

I have hosted a static website in the GCS bucket and another website in Google Kubernetes Engine (GKE). I have configured the load balancer with two backends having a reserved IP associated with the ...
Sha Md. Nayeem's user avatar
0 votes
0 answers
1k views

UPDATE: I definitely have some sort of deep-rooted authentication problem. This doesn't really have anything to do with the HeakthCheck.UI project I don't think. I set up a simple test controller and ...
Glen Eccles's user avatar
0 votes
2 answers
712 views

I have an Azure static web app with the staticwebapp.config.json like so: "routes": [ { "route": "/*", "allowedRoles": ["authenticated"] } ...
Anand's user avatar
  • 1,123

1
2 3 4 5
9