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
- Host: GitHub
- URL: https://github.com/qbart/kemal-healthcheck-handler
- Owner: qbart
- License: mit
- Created: 2018-08-15T02:12:17.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-15T13:05:27.000Z (almost 7 years ago)
- Last Synced: 2025-03-29T06:33:13.131Z (2 months ago)
- Topics: aws, crystal, handler, healthcheck, kemal, kemalcr, middleware
- Language: Crystal
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](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)
```