Introduction
The Verdantix Energy Dashboard provides real-time monitoring, predictive analytics, and automated optimization for renewable energy installations. This guide covers everything from initial setup to advanced API integration.
Installation & Setup
Deploy the dashboard agent on your local gateway or cloud instance. We support Docker, Kubernetes, and direct binary installation.
Docker Deployment
Run the following command to pull and start the latest stable image:
docker run -d \
--name verdantix-agent \
-e API_KEY="your_api_key_here" \
-v /var/log/verdantix:/app/logs \
-p 8080:8080 \
verdantix/energy-agent:latest
System Configuration
After installation, configure your `verdantix.yaml` file with your facility parameters:
facility:
name: "Main Campus Solar Array"
timezone: "America/New_York"
reporting_interval: "5m"
carbon:
offset_tracking: true
baseline_year: 2023
scope: [1, 2, 3]
alerts:
email: true
slack_webhook: "https://hooks.slack.com/..."
| Parameter | Type | Description | Default |
|---|---|---|---|
reporting_interval | string | Frequency of data sync | 10m |
carbon.offset_tracking | boolean | Enable automatic offset calculation | false |
max_retries | integer | API connection retry attempts | 3 |
First Run & Validation
Once configured, start the service and verify connectivity. The dashboard will automatically begin polling your inverters and meters.
- Run
verdantix-cli verifyto check configuration syntax - Monitor logs at
docker logs -f verdantix-agent - Wait 3-5 minutes for initial data sync
- Access the web dashboard at
http://localhost:8080