Questions tagged [health-monitoring]

Health monitoring gives an easy way to monitor the overall health of an application and the underlying systems

Health monitoring gives an easy way to monitor the overall health of an application and the underlying systems and can get detailed run-time information about resources; Health monitoring provides interfaces with alerting (automatic email to admistrators) and to configure tasks to be performed automatically to restore the functioning of the application to the occurrence of critical situations.

450 questions
6
votes
1 answer

Performance logging library

I want to start monitoring the performance of my applications by logging business events. I was looking for something similiar to log4net or other logging libraries, but tailored for performance/health monitoring. My goal is to publish these…
Books
  • 4,773
  • 5
  • 17
  • 16
6
votes
5 answers

Health Check command for docker(1.12) container (Not in Dockerfile!)

Docker Version 1.12, I got a Dockerfile from Here FROM nginx:latest RUN touch /marker ADD ./check_running.sh /check_running.sh RUN chmod +x /check_running.sh HEALTHCHECK --interval=5s --timeout=3s CMD ./check_running.sh I'm able to roll the…
Veerendra Kakumanu
  • 1,747
  • 4
  • 24
  • 49
6
votes
3 answers

How to fill redis with redis-cli with dummy data of size weigh hundreds of MB?

I am getting my hand dirty with redis monitoring. So far I came up with this metrics useful to monitor about redis: memory_used through put latency connections replication I am newbie on this. I am trying to fill the redis from redis-cli with…
thapakazi
  • 181
  • 2
  • 9
5
votes
3 answers

Scripting library for monitoring server health?

Is there a scripting library preferably in Python/Perl/Ruby that allows you to get information on disk, load, a list of processes running, cpu usage in a standard way? I always end up parsing df, uptime, ps etc. Given that these differ on different…
Stuart Woodward
  • 1,919
  • 4
  • 18
  • 29
5
votes
2 answers

ASP.NET Core Health Checks: Returning pre-evaluated results

I'm evaluating the use of Microsoft Health Checks to improve routing of our internal load balancer. So far I'm very happy with the functionality provided by this feature and the community around it. However there's one thing I did not find yet and…
Waescher
  • 4,506
  • 3
  • 27
  • 42
5
votes
1 answer

How to resolve AWS Elastic Beanstalk Django health check problems

I've recently deployed my Django API backend to AWS EB to their Linux 2 system (exact platform name is Python 3.7 running on 64bit Amazon Linux 2). Almost everything is working as expected, but my application health status is Severe and after hours…
5
votes
0 answers

We want to get live data from Multi-para patient Monitor

Want to fetch / get data from Multi-para patient monitor. I have googled a lot but not able to get proper solution of the same. These monitors are mainly manufactured by Chinese and no documents regarding the same is provided. In monitors LAN cable…
murtaza.webdev
  • 3,083
  • 4
  • 19
  • 31
5
votes
2 answers

Monitor memory usage of child process

I have a Linux daemon that forks a few children and monitors them for crashes (restarting as needed). It will be great if the parent could monitor the memory usage of child processes - to detect memory leaks and restart child processes when the go…
Omry Yadan
  • 25,948
  • 16
  • 54
  • 77
5
votes
2 answers

Hosted app status dashboard

I wish to provide a status dashboard to users of my SAAS internet application similar to the status dashboards provided by Google and Amazon. Does anyone know of a ready-made 3rd party hosted service supporting such an interface? Google…
camelCase
  • 195
  • 8
4
votes
1 answer

How can I auto scale EC2 instances with system data collected by the Sensu framework?

I want to scale out my EC2 instances on AWS. For this I have been suggested to use the Sensu framwork. I want to scale out the instance based on its CPU usage. For testing I have configured Sensu on both Windows and Ubuntu(V.Box), I'm running a…
Anand Soni
  • 5,930
  • 9
  • 48
  • 97
4
votes
2 answers

SCOM Management Pack Tutorial

I am new to SCOM, but I have read a lot about it and currently installed it in a test environment. What I am really looking for is a good step by step tutorial on how to write a management pack which monitors the health of a .net application. I have…
Yasser Sobhdel
  • 591
  • 6
  • 24
4
votes
1 answer

Kubernetes microservices monitoring & alerting

I have a bunch of microservices running in a kubernetes cluster where each microservice implements a basic health check over HTTP. e.g for the endpoint /health each service will return a HTTP response 200 if that particular service is currently…
user805703
  • 177
  • 2
  • 11
4
votes
2 answers

Invoke AspNetCore.Diagnostics.HealthCheck from code without a call to HTTP endpoint?

I have added the Microsoft.AspNetCore.Diagnostics.HealthChecks on a collection of Service Fabric services, some of which have a HTTP ServiceEndpoints and some do not. For the ones which do not have a service endpoint, if I wanted to add some…
4
votes
0 answers

Why doesn't the ALB health check take care of cold starts on Lambdas?

I have an ALB that is performing a health check every 30 seconds on a Target Group (Lambda endpoint in this case). Despite this, any time I query my API for the first time in several minutes or longer it goes through a cold start. What could be the…
4
votes
2 answers

Monitor running apps in .NET?

We have several apps that run on a Windows 2003/2008 server. Some of these apps are Java JAR files that are kicked off with a Scheduled Task using a app.cmd file. Others are "big ones" like SQL Server and IIS. I'd like to write an app (or service,…
cbmeeks
  • 10,718
  • 18
  • 79
  • 134
1 2
3
29 30