This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
cachet-monitor/README.md

106 lines
3.4 KiB
Markdown
Raw Permalink Normal View History

2020-02-27 20:25:42 +00:00
# [cachet-monitor](https://git.sp-codes.de/samuel-p/cachet-monitor)
2020-02-29 13:13:08 +00:00
[![Build Status](https://ci.sp-codes.de/api/badges/samuel-p/cachet-monitor/status.svg)](https://ci.sp-codes.de/samuel-p/cachet-monitor) [![License](https://img.shields.io/badge/license-GPL--3.0-orange)](#license) [![Docker Pulls](https://img.shields.io/docker/pulls/samuelph/cachet-monitor)](https://hub.docker.com/r/samuelph/cachet-monitor)
2020-02-26 22:56:42 +00:00
2020-02-27 21:39:51 +00:00
Simple monitor to watch URLs (`HTTP`) or ports (`TCP`, `UDP`) and update [Cachet](https://cachethq.io/) status.
2020-02-26 22:56:42 +00:00
## Configuration
cachet-monitor can monitor a list of services. Therefore it requires to setup all services in `./data/config.json`. __The id of each service has to match the cachet component id you want to update!__ Each service needs the following attributes (additionally to `id` and `type`):
2020-02-27 20:25:42 +00:00
* type `HTTP`
* `url`
* type `TCP` or `UDP`
* `host`
* `port`
Optionally you can add the following options to each service, or change the default values globally:
* `retry` - number how often the check should be retried if the service is offline (default value `0`)
* `waitUntilRetry` - number of seconds the retry should be delayed (default value `5`)
* `performanceTimeout` - time in seconds in which the request has to be completed, otherwise the status will be `SLOW` (Cachet `Performance Issues`) (default value `1`)
* `requestTimeout` - time in seconds in which the request has to be completed, otherwise the status will be offline (default value `30`)
* `offlineTimeUntilMajor` - time in seconds a service has to be offline until it turns from partial to major outage (default value `300`)
You can specify the interval (`cron`) your services should be checked. You can use the cron syntax from [`node-cron`](https://www.npmjs.com/package/node-cron). Finally you need to provide the information to your cachet instance (`api` and `token`).
To change the default values globally you can set the in the `defaults` object.
2020-02-27 20:25:42 +00:00
2020-02-26 22:56:42 +00:00
Example:
```json
{
"cron": "0 * * * * *",
"api": "https://<cachet-url>/api/v1",
2020-02-29 13:13:08 +00:00
"token": "<user-token>",
2020-02-26 22:56:42 +00:00
"services": [
{
"id": 1,
"type": "HTTP",
"url": "https://sp-codes.de",
"performanceTimeout": 1
2020-02-26 22:56:42 +00:00
},
{
"id": 2,
"type": "TCP",
"host": "sp-codes.de",
"port": 443
2020-02-26 22:56:42 +00:00
}
],
"defaults": {
"retry": 1,
"waitUntilRetry": 5,
"performanceTimeout": 2,
"requestTimeout": 10,
"offlineTimeUntilMajor": 600
}
2020-02-26 22:56:42 +00:00
}
```
2020-02-27 20:25:42 +00:00
## Run with docker
You can use the docker image [`samuelph/cachet-monitor`](https://hub.docker.com/r/samuelph/cachet-monitor) and mount a volume to `/monitor/data` to persist cache and config:
```bash
2020-02-27 21:54:05 +00:00
docker run -v /your/path/monitor/data:/monitor/data samuelph/cachet-monitor
2020-02-27 20:25:42 +00:00
```
You also can use it in `docker-compose.yml`:
```yaml
services:
monitor:
image: samuelph/cachet-monitor
restart: always
volumes:
2020-02-27 21:54:05 +00:00
- /your/path/monitor:/monitor/data
2020-02-27 20:25:42 +00:00
```
## Run from source
1. clone the repo
```bash
git clone https://git.sp-codes.de/samuel-p/cachet-monitor.git
```
2. install dependencies
```bash
npm install
```
3. run
```bash
npm run start
2020-02-29 13:13:08 +00:00
```
__Important: If you want `UDP` checks, you need to run it as `root`, because `nmap` allows `UDP` scans only for `root`.__
2020-02-29 13:13:08 +00:00
## License
[![GNU GPLv3 Image](https://www.gnu.org/graphics/gplv3-127x51.png)](https://www.gnu.org/licenses/gpl-3.0)
cachet-monitor is Free Software: It is licensed under GNU GPL v3 (See [LICENSE](LICENSE) for more information).