All Projects → thedillonb → Owin.HealthCheck

thedillonb / Owin.HealthCheck

Licence: other
Health Check Middleware for the OWIN pipeline

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Owin.HealthCheck

Multitenancy-Microservice-FederatedIdentity-Example
Multitenancy Federated Identity Example ASP.NET MVC C#
Stars: ✭ 33 (+50%)
Mutual labels:  owin
Simplify.Web
Moved to https://github.com/SimplifyNet. Simplify.Web is a lightweight and fast server-side .NET web-framework based on MVC and OWIN for building HTTP based web-applications, RESTful APIs etc.
Stars: ✭ 23 (+4.55%)
Mutual labels:  owin
polaris-java
Lightweight Java SDK used as Proxyless Service Governance Solution
Stars: ✭ 84 (+281.82%)
Mutual labels:  health-check
microservice-graph-explorer
Navigate and explore all of the microservices in your application in real time using the real application connections.
Stars: ✭ 71 (+222.73%)
Mutual labels:  health-check
connect-owin
Node.js connect middleware for .NET using OWIN
Stars: ✭ 46 (+109.09%)
Mutual labels:  owin
LeXun.Security.OAuth
用于 Asp.Net 和 Asp.Net Core 的OAuth2社交身份验证提供程序。支持支付宝,QQ,微信,百度等第三方登录
Stars: ✭ 19 (-13.64%)
Mutual labels:  owin
Kafka Health Check
Health Check for Kafka Brokers.
Stars: ✭ 214 (+872.73%)
Mutual labels:  health-check
NLog.Owin.Logging
NLog logging adapter for OWIN
Stars: ✭ 25 (+13.64%)
Mutual labels:  owin
dnsdisco
DNS service discovery library
Stars: ✭ 25 (+13.64%)
Mutual labels:  health-check
py-healthcheck
Write simple healthcheck functions for your Flask or Tornado apps.
Stars: ✭ 92 (+318.18%)
Mutual labels:  health-check
statoo
`statoo` is a super simple http GET tool for checking site health
Stars: ✭ 28 (+27.27%)
Mutual labels:  health-check
kafka-health-check
Health Check for Apache Kafka
Stars: ✭ 30 (+36.36%)
Mutual labels:  health-check
node-healthchecks-api
The Node.js implementation of the Health Checks API by Hootsuite
Stars: ✭ 25 (+13.64%)
Mutual labels:  health-check
Samples
Sample applications using App.Metrics
Stars: ✭ 19 (-13.64%)
Mutual labels:  health-check
heartcheck
A simple way to check if everything is good in your app
Stars: ✭ 22 (+0%)
Mutual labels:  health-check
check netapp ontap
🍀 Check NetApp Ontap 🍀
Stars: ✭ 38 (+72.73%)
Mutual labels:  health-check
docktor
Health checking and security implementations for running Docker containers and images
Stars: ✭ 42 (+90.91%)
Mutual labels:  health-check
golang-health-checker
A simple package to allow you to track your application healthy
Stars: ✭ 12 (-45.45%)
Mutual labels:  health-check
embedio-extras
Additional Modules showing how to extend EmbedIO.
Stars: ✭ 43 (+95.45%)
Mutual labels:  owin
redis-healthy
It retrieves metrics, periodically, from Redis (or sentinel) and send them to Logstash
Stars: ✭ 62 (+181.82%)
Mutual labels:  health-check

OWIN HealthCheck Middleware Build status

This library provides a collection of health check mechanisms for the OWIN pipeline. It is recommended that HTTP server applications build a health check endpoint so that external resources can determine the health of the running application. A common usecase for health checks are load balanced applications as the load balancer should seek to eliminate unhealthy applications from the pool of potential servers.

Current Health Check Mechanisms

The following is a list of built-in health check mechanisms that are available for use:

  • SQL
  • ICMP Ping
  • HTTP request
  • Custom (via a c# delegate)

Use

Using this middleware is simple:

// app is IAppBuilder

// Create an 'always successful' healthcheck
app.UseHealthCheck();

// Create an 'always successful' health check at a specific route
app.UseHealthCheck('/healthcheck');

// Create a health check endpoint with two health checks.
app.UseHealthCheck("/healthcheck", new HealthCheckMiddlewareConfig
{
    HealthChecks = new List<IHealthCheck>
    {
        new HttpHealthCheck("Google Check", new Uri("https://www.google.com")),
        new PingHealthCheck("Local Ping", "localhost", TimeSpan.FromSeconds(10))
    }
});

Nuget

Nuget packaged for your pleasure

Install-Package Owin.HealthCheck

License

The MIT License (MIT)

Copyright (c) 2015 Dillon Buchanan

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].