Skip to content

Commit

Permalink
Add some quick helper files to README
Browse files Browse the repository at this point in the history
  • Loading branch information
paalbra committed Jun 16, 2020
1 parent 1b8c517 commit aad2aa5
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
# About

Zabbix-auto-config is an utility that aims to automatically configure hosts, host groups and templates in the monitoring software [Zabbix](https://www.zabbix.com/).

# Quick start

## Database

```
CREATE TABLE hosts (
data jsonb
);
CREATE TABLE hosts_source (
data jsonb
);
```

## Systemd unit

```
[Unit]
Description=Zabbix auto config
After=network.target
[Service]
User=zabbix
Group=zabbix
WorkingDirectory=/home/zabbix/zabbix-auto-config
Environment=PATH=/home/zabbix/zabbix-auto-config/venv/bin
ExecStart=/home/zabbix/zabbix-auto-config/venv/bin/zac
TimeoutSec=300
[Install]
WantedBy=multi-user.target
```

0 comments on commit aad2aa5

Please sign in to comment.