Questions tagged [healthcheck]

7 questions
3
votes
3 answers

How to configurate keycloak healthcheck in docker compose?

I need my BFF service to wait for keycloak to be fully launched using condition service_health, and then start its launch. I can't set up a health check for keycloak. When searching for an answer, I come across either strange or outdated answers…
The Prototype
  • 131
  • 1
  • 4
0
votes
0 answers

Docker container healthcheck status as a prometheus metric?

I want to get information about docker container healthcheck current status ("healthy" or "unhealthy") into my Prometheus, so I could draw container status graphs in grafana, send alerts when container comes unhealthy with alertmanager,…
AntonioK
  • 19
  • 6
0
votes
1 answer

What is the relationship between deployment and container level readiness probes?

I have a helm chart that defines my container's readinessProbe as: readinessProbe: httpGet: path: /health/readiness port: http And when I deploy it I can browse to http://myservice.mydomain/istioBasePath/health/readiness and I get a…
Vaccano
  • 206
  • 1
  • 9
0
votes
2 answers

How to add an AWS Auto Scaling Group health check on a non-web instance

Background Adding health checks to our web ec2 instances on AWS is easy, we simply have to create an endpoint that always returns a 200 http response when it's healthy. However, we also have other non-web instances in our Auto Scaling Groups (ASG)…
abbood
  • 473
  • 4
  • 13
0
votes
1 answer

AWS EC2 Target groups healthchecks price

I notice AWS Application Load Balancer sends every 300 seconds(max) health check to the servers(target groups, ec2 instance). Does these health checks are included in free tier? couldn't find the answer anywhere.…
Eden Berdugo
  • 109
  • 2
0
votes
1 answer

How to check application responding in Kubernetes

I am a newbie in k8s. I have a .net framework application written in C# running in K8s orchestration. I simply want to check in fixed interval (lets say in every 300sec) that my application which is running inside pod is responding or not. Can…
solveit
  • 105
  • 2
-2
votes
2 answers

Code Changes for Implementing Kubernetes Probes

I want to implement Kubernetes Liveliness Probes in my .Net core application with C# language. I understood that first I need to define the liveliness probe in deployment.yaml file of my application. I also created the http service in my application…
solveit
  • 105
  • 2