Initial Release
This commit is contained in:
commit
5e748d855b
24
README.md
Normal file
24
README.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
## Базовая конфигурация Grafana для работы с плагином Zabbix
|
||||||
|
Ниже представлен мануал по простейшему разворачиванию Grafana с плагином Zabbix
|
||||||
|
|
||||||
|
Клонируем репозиторий
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://gitea.mayex.net/mayekkuzu/grafana-docker.git
|
||||||
|
cd grafana-docker
|
||||||
|
```
|
||||||
|
|
||||||
|
## Установка плагинов
|
||||||
|
|
||||||
|
По умолчанию я использую только плагин интеграции с zabbix, но если необходимы другие, можно посмотреть здесь:
|
||||||
|
https://grafana.com/grafana/plugins/
|
||||||
|
|
||||||
|
Копируем имя плагина и указываем его в переменной, например (через запятую если несколько):
|
||||||
|
```
|
||||||
|
...
|
||||||
|
|
||||||
|
- GF_INSTALL_PLUGINS=alexanderzobnin-zabbix-app,node-exporter,etc
|
||||||
|
|
||||||
|
...
|
||||||
|
``````
|
||||||
|
Можно так же использовать прямые ссылки http на архив с плагином
|
16
docker-compose.yaml
Normal file
16
docker-compose.yaml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
version: '3.3'
|
||||||
|
services:
|
||||||
|
grafana:
|
||||||
|
container_name: grafana
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 3001:3000
|
||||||
|
volumes:
|
||||||
|
- grafana-data:/var/lib/grafana:rw
|
||||||
|
image: grafana/grafana-oss
|
||||||
|
environment:
|
||||||
|
- GF_INSTALL_PLUGINS=alexanderzobnin-zabbix-app
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
grafana-data:
|
||||||
|
driver: local
|
Loading…
Reference in New Issue
Block a user