stiebeleltron-stack
A Helm chart for installing stiebeleltron-exporter with long-term storage
Installation
helm repo add ccremer https://ccremer.github.io/charts
helm install stiebeleltron-stack ccremer/stiebeleltron-stack
⚠️ WARNING: See data retention first!
About
This Helm chart installs the stiebeleltron-exporter along with long-term storage and a Grafana dashboard. The goal is to be able to do statistics of the photovoltaic installation.
I wanted to keep stiebeleltron-exporter Helm chart minimal in case you’re only interested in the exporter or you’re bringing your own metrics stack.
Features
- stiebeleltron-exporter chart
- InfluxDB 2 chart
- Post-Install hook to configure archival bucket with downsampling
- Grafana datasource
- Grafana dashboard
Minimal required parameters
You must configure following parameters in the minimum:
influxdb:
adminUser:
token: changeme
password: changeme
stiebeleltron:
exporter:
isgUrl: http://your.isg.device.or.ip/
telegraf:
influxdb:
token: changeme # should be the same as `influxdb.adminUser.token`!
globalTags:
site: my-home
Data retention
Before installing the chart, think about data retention. By default, the chart installs InfluxDB 2.0 with an initial bucket that keeps metrics for 14 days.
Additionally, the chart features a one-time post-install hook to create an archival bucket that keeps data forever. It also creates a tasks that periodically downsamples the high-precision data to 10-minute-averages into the archival bucket. This bucket is meant to hold data for years.
You can adjust retention with the following parameters:
influxdb.adminUser.retention_policy
archival.*
ℹ️ NOTE: After installation, any changes in bucket namings, retention or downsampling settings will NOT be applied anymore. You’d need to manually change this with InfluxDB CLI within the pod.
Grafana integration
The chart comes with a Grafana datasource and dashboard ConfigMaps enabled by default.
Please ensure Grafana sidecar is enabled and it searches in the release namespace, or set grafana.*.namespace
.
The dashboard features some panels that calculate per-day metrics. Make sure the stiebeleltron ISG device, InfluxDB and Grafana dashboard are roughly in the same timezone. The stiebeleltron ISG console includes counters like “energy per day” that reset at midnight.
Migrating from netdata plugin
If you have used the stiebeleltron plugin that is part of netdata, you can migrate the data to the exporter variant.
As this step is done manually once, it’s not automated, but here’s roughly how I did it:
- Install this chart but don’t start the exporter and influxdb yet (0 replicas each). Also disable the archival feature for now.
- Modify the InfluxDB 2.x StatefulSet, so that you can migrate using the Docker approach.
You’d need to set
DOCKER_INFLUXDB_INIT_MODE=upgrade
and add the volume mounts from the old DB. SetINFLUXD_ENGINE_PATH=/var/lib/influxdb2/migration
(we appendedmigration
, otherwise there will be some permission errors). SetINFLUXD_BOLT_PATH=/var/lib/influxdb2/migration/influxd.bolt
. - You can now scale the replicas to 1.
- Once the InfluxDB 2.x is running and the old DB upgraded, enter its shell and execute the following:
influx backup /var/lib/influxdb2/backup
- Exit shell and scale replica to 0.
- Reset
DOCKER_INFLUXDB_INIT_MODE
,INFLUXD_ENGINE_PATH
andINFLUXD_BOLT_PATH
to default values and setreplicas=1
. - Enter shell again and execute a restore:
influx bucket delete --name stiebeleltron_live influx restore /var/lib/influxdb2/backup influx bucket create --name stiebeleltron_archive --org stiebeleltron rm -rf /var/lib/influxdb2/migration /var/lib/influxdb2/backup
- You should have now
netdata/autogen
,stiebeleltron_live
andstiebeleltron_archive
bucket. The last 2 should be empty for now. - Migrate & downsample the raw data from
netdata/autogen
bucket using the scripts provided. You might need to edit the query a bit if you are deviating from the defaults. You can execute the scripts withkubectl
, e.g.cat migration/<the-file>.flux | kubectl -n stiebeleltron exec -i stiebeleltron-influxdb-0 -- influx query -o stiebeleltron
- Each migration script can take a few minutes. Check the Grafana dashboard if the values make sense.
- Scale up the exporter and verify that values are stored in
stiebeleltron_live
bucket. - Create the downsampling task for
stiebeleltron_archive
, check out the ConfigMap in the Helm chart that would installed on first installation. - Delete the
netdata/autogen
bucket via CLI.
Source Code
Requirements
Repository | Name | Version |
---|---|---|
https://ccremer.github.io/charts | stiebeleltron(stiebeleltron-exporter) | 0.1.1 |
https://helm.influxdata.com | influxdb(influxdb2) | 2.0.4 |
Values
Key | Type | Default | Description |
---|---|---|---|
archival.bucket | string | "stiebeleltron_archive" |
Name of the archival bucket to create after installation. |
archival.enabled | bool | true |
Whether long-term archival is enabled. Note: Disabling archival after installation (when enabled) does not remove the archival bucket. |
archival.retention | string | "0s" |
Retention of the archival bucket. 0s means forever. |
archival.window | string | "10m" |
Fixed windows of time in which metrics are averaged. |
fullnameOverride | string | "" |
|
grafana.dashboard.enabled | bool | true |
|
grafana.dashboard.labels | object | {"grafana_dashboard":"1"} |
The labels which the sidecar is filtering for dashboards. |
grafana.dashboard.namespace | string | "" |
Override the namespace where the ConfigMap is installed, defaults to release namespace. |
grafana.datasource.enabled | bool | true |
|
grafana.datasource.labels | object | {"grafana_datasource":"1"} |
The labels which the sidecar is filtering for data sources. |
grafana.datasource.namespace | string | "" |
Override the namespace where the ConfigMap is installed, defaults to release namespace. |
influxdb.adminUser.bucket | string | "stiebeleltron_live" |
|
influxdb.adminUser.organization | string | "stiebeleltron" |
|
influxdb.adminUser.retention_policy | string | "14d" |
|
influxdb.enabled | bool | true |
|
influxdb.pdb.create | bool | false |
|
influxdb.persistence.size | string | "2Gi" |
|
influxdb.resources.limits.memory | string | "256Mi" |
|
influxdb.resources.requests.cpu | string | "50m" |
|
influxdb.resources.requests.memory | string | "128Mi" |
|
nameOverride | string | "stiebeleltron" |
|
stiebeleltron.enabled | bool | true |
|
stiebeleltron.nameOverride | string | "exporter" |
|
stiebeleltron.telegraf.enabled | bool | true |
|
stiebeleltron.telegraf.globalTags.site | string | "home" |
The name of the site or environment. |
stiebeleltron.telegraf.influxdb.bucket | string | "stiebeleltron_live" |
The high-precision bucket name, needs to be equal to influxdb.adminUser.bucket . |
stiebeleltron.telegraf.influxdb.token | string | "" |
The token to connect to InfluxDB, needs to be equal to influxdb.adminUser.token . |
stiebeleltron.telegraf.influxdb.url | string | "http://stiebeleltron-influxdb" |
|
stiebeleltron.telegraf.interval | string | "5s" |
Interval of sending metrics to InfluxDB. |