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

https://github.com/ieee0824/chirno

chirno provides health_check api for any application.
https://github.com/ieee0824/chirno

golang healthcheck

Last synced: 3 months ago
JSON representation

chirno provides health_check api for any application.

Awesome Lists containing this project

README

          

# chirno

`chirno` provides health_check api for any application.

```
    /^?      ,.へ___
   /   >''´ ̄ ̄`'''ヽ7
   |  /´ _       _'ヽ、
   〉 / /´  /  ,  、  、 ヽ〉
  /  i イ  レレ ハノ! Ji i  i
  └rイ レイ   ┃  ┃ |   n⌒i
  く_ノ  〉 i          iハ _,,.! ノ
   ハ. i ハ、    o    人|´ /
  i?レヘハレへ〉'=r--r='i´Vヽy'´
  ヽ、,_`ヽ,r'´ `ト、 ∞」 i  ノ
  <   ̄〉、___ノ   ̄  Y/
   >_/ /〉 ,  ,   、!_ゝ
    `(⊆ノ/ /  !   ハ
      くヘ,.へ_,.へ__,.ヘ,.ヘ
       `'r、__ハ___ハ__!ン
        ト_ン   ト_ノ
```

# installation
```
$ go get github.com/ieee0824/chirno
```

# configuration
using json.

## options

### backend_url
Specifying this parameter operates as a reverse proxy.

### command
Execution command of the application to add health_api.

### port
api's listen port.

## example

```json
{
"backend_url": "http://localhost:8080",
"command": [
"writing",
"exec",
"command",
"options"
],
"port": "9090"
}
```