Files
grafana-zabbix/devenv
Zoltán Bedi 4036bc585b Add compatibility workflows and integration tests (#1991)
Fixes #1986
Fixes #1994

- Updated .gitignore to include SSL certificate files.
- Introduced new GitHub Actions workflows for testing compatibility with
Zabbix versions 5.0, 6.0, 7.0, and 7.2.
- Added integration tests for Zabbix API for each version, ensuring
proper authentication and API version handling.
- Updated Docker Compose files to support SSL configuration for Zabbix
web services.
- Removed deprecated default Docker Compose and bootstrap files.
- Removed devenv for version 6.2.
2025-03-19 14:04:52 +01:00
..
2022-05-05 17:45:59 +03:00
2022-07-08 14:41:24 +03:00

Development environment for the plugin

This docker environment contains preconfigured Zabbix instance with several monitored hosts and preconfigured Grafana with added data source and dashboards for testing. Environment uses plugin built from sources, so in order to start environment, run commands from plugin root directory:

# Build plugin
make dist

# Test plugin with Zabbix 6.0
cd devenv/zabbix60
docker-compose up -d

Run bootstrap again in case of error:

docker-compose up -d --build bootstrap

Grafana will be available at http://localhost:3001 (with default admin:admin credentials).

If you want to edit sources, do it, rebuild plugin and then restart grafana container:

docker-compose restart grafana