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.
- Host: GitHub
- URL: https://github.com/ieee0824/chirno
- Owner: ieee0824
- Created: 2018-03-09T02:46:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-23T11:22:49.000Z (almost 4 years ago)
- Last Synced: 2025-04-01T16:52:15.687Z (7 months ago)
- Topics: golang, healthcheck
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
```