PixelView Zabbix Metrics Setup Guide
Overview
This guide provides a step-by-step process to deploy PixelView to fetch and expose metrics from Zabbix using Docker and visualize them on the PixelView dashboard.
Prerequisites
- A running Zabbix instance with MySQL/MariaDB as the backend.
- Docker and Docker Compose installed.
- Redis for caching.
- Network access between PixelView, Zabbix, MySQL, and Redis.
Deployment Configuration
1. Docker Compose File
Create a docker-compose.yml
file:
version: "3"
services:
api:
image: ghcr.io/pixelvirt/zabbix-test:latest
env_file:
- ./env
network_mode: "host"
container_name: zabbix-backend
redis:
image: redis:7.0
network_mode: "host"
2. Environment Variables
Create a .env
file (excluding sensitive details):
FLASK_ZABBIX_ROOT_URL=http://<your-domain-or-ip>:8000/metrics
FLASK_ZABBIX_MYSQL_HOST=<mysql_host>
FLASK_ZABBIX_MYSQL_PORT=3306
FLASK_ZABBIX_MYSQL_USER=<mysql_user>
FLASK_ZABBIX_MYSQL_PASSWORD=<mysql_password>
FLASK_ZABBIX_MYSQL_DATABASE=zabbix
CACHE_TYPE=RedisCache
CACHE_REDIS_URL=redis://localhost:6379/0
CACHE_DEFAULT_TIMEOUT=500
ALLOWED_HOSTS=*
Replace <your-domain-or-ip>
, <mysql_host>
, <mysql_user>
, and <mysql_password>
with actual values.
Installation Steps
-
Ensure Docker and Docker Compose are installed:
-
Start the services:
-
Verify the containers are running:
Accessing Metrics
Once deployed, access metrics at:
To test the API:
Visualizing Metrics in PixelView
- Log in to the PixelView dashboard.
- Click on "Add New Chart."
- Click on "Add Source."
- Provide an appropriate name in the "Name" section.
- In the URL section, insert:
- Click on Submit.
- After submitting, multiple metric options will appear.
- Select the desired items to visualize them on the PixelView dashboard.
Troubleshooting
1. API Not Responding
- Check logs:
- Ensure MySQL and Redis are accessible.
- Verify
.env
configurations.
2. Redis Connection Issues
- Test Redis connectivity:
- If not running, restart:
3. MySQL Connection Issues
- Check if MySQL is reachable:
Security Considerations
- Do not expose MySQL credentials publicly.
- Use a secure network mode instead of
host
for production. - Restrict access to Redis and the API using firewall rules.
This documentation should help you deploy and visualize Zabbix metrics on PixelView efficiently.