1
0
mirror of https://github.com/limosek/zaf.git synced 2024-09-21 05:11:38 +02:00
limosek-zaf/README.md

42 lines
1.5 KiB
Markdown
Raw Normal View History

2016-03-23 14:37:51 +01:00
# Zabbix Agent Framework
2016-03-21 08:36:26 +01:00
This tool is used to maintain external zabbix checks in *one place*. There are lot of places where it is possible to download many external checks.
2016-03-23 14:37:51 +01:00
But there is problem with installation, update and centralised management. This tool should do all of this in easy steps. Today is is in devel stage and not everything works.
I will try to make it working :)
2016-03-21 08:36:26 +01:00
## Example
Best way how to explain everything is example. Supposing we are working on debian-like system.
```
2016-03-23 14:37:51 +01:00
curl https://raw.githubusercontent.com/limosek/zaf/master/install.sh | sudo sh
sudo zaf install process-info
sudo zaf install http://other.check.domain/check/
2016-03-21 08:36:26 +01:00
zaf make-deb
zaf make-opkg
zaf make-rpm
zaf self-upgrade
```
## Zaf plugin
Zaf plugin is set of configuration options and binaries which are needed for specific checks. For example, to monitor postfix, we need some cron job which is automaticaly run and next ti this, some external items which has to be configured.
## How it works
There is central zaf reposirory on github. There are basic checks and zaf code itself. Next to this, each project can have its own zaf structure. Adding url of plugin to zaf will make it useable and updatable.
## Zaf plugin structure
Each zaf plugin url MUST have this items:
```
/plugin/README.md # Documentation
/plugin/control # Control file
2016-03-23 14:37:51 +01:00
/plugin/template.xml # Template for Zabbix
2016-03-21 08:36:26 +01:00
```
2016-03-23 14:37:51 +01:00
## Zaf control file
Control files are similar to Debian Control files
```
will be explained
2016-03-21 08:36:26 +01:00
2016-03-23 14:37:51 +01:00
```
2016-03-21 08:36:26 +01:00