An open API service indexing awesome lists of open source software.

https://github.com/qbart/kemal-healthcheck-handler


https://github.com/qbart/kemal-healthcheck-handler

aws crystal handler healthcheck kemal kemalcr middleware

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/qbart/kemal-healthcheck-handler.svg?branch=master)](https://travis-ci.org/qbart/kemal-healthcheck-handler)

# Kemal healthcheck handler

> Handler that returns 200 ok page for /healthcheck in Kemal.
>
> Useful for AWS load balancers or monitoring tools.

## Installation

Add this to your application's `shard.yml`:

```yaml
dependencies:
healthcheck_handler:
github: qbart/kemal-healthcheck-handler
```

## Usage

```crystal
require "healthcheck_handler"

add_handler(HealthcheckHandler.new)
```