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
54
votes
6 answers

Restarting an unhealthy docker container based on healthcheck

I am using Docker version 17.09.0-ce, and I see that containers are marked as unhealthy. Is there an option to get the container restart instead of keeping the container as unhealthy?
Govind Kailas
  • 2,089
  • 4
  • 18
  • 23
53
votes
2 answers

How to view docker-compose healthcheck logs?

Inside my docker-compose.yml, I have the following service healthcheck section. I want to know if MariaDB is actually ready to handle queries. A service named cmd is configured to depend on condition: service_healthy. db: image: mariadb:10 …
Jacob Marble
  • 24,696
  • 18
  • 62
  • 76
28
votes
8 answers

How do you log errors (Exceptions) in your ASP.NET apps?

I'm looking for the best way to log errors in an ASP.NET application. I want to be able to receive emails when errors occurs in my application, with detailed information about the Exception and the current Request. In my company we used to have our…
Costo
  • 5,590
  • 7
  • 30
  • 35
20
votes
3 answers

StatsD and Graphite-like tools for .Net and Windows

I was recently sent this link to Statsd which would be an interesting tool for us to monitor various aspects of our product, but it would be a hard-sell for us because of the PHP and non-Windows toolset. (This question asks about installing this on…
Nij
  • 1,978
  • 1
  • 21
  • 26
17
votes
5 answers

Should Health Checks call other App Health Checks

I have two API's A and B that I control and both have readiness and liveness health checks. A has a dependency on B. A /foo - This endpoint makes a call to /bar in B /status/live /status/ready B /bar /status/live /status/ready Should the readiness…
17
votes
4 answers

How to inject dependencies inside an ASP.NET Core Health Check

I'm trying to use the new ASP.NET Code 2.2 Healthchecks feature. In this link on the .net blog, it shows an example: public void ConfigureServices(IServiceCollection services) { //... services .AddHealthChecks() .AddCheck(new…
17
votes
2 answers

Spring Boot - Change the location of the /health endpoint to /ping/me

I set the endpoints.health.path property to /ping/me. But I cannot access the endpoint using http://localhost:9000/ping/me It only works with http://localhost:9000/health. What am I missing ? Here is the code in app properties file. #Configuration…
16
votes
2 answers

Official SDK/API for Mi and other smart Band

We want to develop an android application to support MiBand and Other Smart bands. We want to fetch information like Heart rate etc. from Smart Band via BLE and display it in a mobile application. I am not able to find any official SDK or API for…
Ankit Thakkar
  • 332
  • 1
  • 3
  • 10
13
votes
2 answers

How to monitor c3p0 connections

I am using Hibernate in my JBoss war, using c3p0 for connection pooling, both configured within a hibernate.cfg.xml config file in my classpath
Llistes Sugra
  • 943
  • 3
  • 9
  • 22
13
votes
1 answer

REST API for Apple Health Data

Is there any REST API support for health data by Apple? I know healthkit api helps to send and receive data from apple health data store but it is very much restricted to ios apps. What i am trying to achieve is to utilize the send/receive from any…
12
votes
2 answers

ASP.NET Web App Logging using Health Monitoring not working

I am using VS2005 C# 2.0 and SQL Server 2005. I am referring to this guide on configuring Health Monitoring. At the end of the guide, there will be a button on Default.aspx and on_Click of the button, a new record will be inserted into my SQL…
gymcode
  • 3,955
  • 13
  • 55
  • 110
12
votes
1 answer

HealthMonitoring Failure Audits Repercussions in ASP.NET

Our event viewer shows two information-level messages that we want to omit from the event logs: When a user fails authentication (Event code: 4006 Event message: Membership credential verification failed.) When forms authentication has expired and…
12
votes
1 answer

DropWizard not registering my health check

In my DropWizard (v0.7.0) app, I have a DummyHealthCheck like so: public class DummyHealthCheck extends HealthCheck { @Override protected Result check() throws Exception { return Result.healthy(); } } Then in my main Application…
IAmYourFaja
  • 50,141
  • 159
  • 435
  • 728
11
votes
9 answers

What are the requirements for an application health monitoring system?

What, at a minimum, should an application health-monitoring system do for you (the developer) and/or your boss (the IT Manager) and/or the operations (on-call) staff? What else should it do above the minimum requirements? Is monitoring the…
Steven A. Lowe
  • 58,325
  • 18
  • 127
  • 199
11
votes
7 answers

Simple Server Monitoring with Java

I'm trying to find a solution that allows me to monitor resource consumption of a server. Preferably, the metrics I'm wanting to obtain are network utilisation IO, and if possible CPU usage/load average and disk IO. The only other requirement I have…
MSR
  • 490
  • 3
  • 5
  • 13
1
2 3
29 30