Warning
Going forward from exporter configuration version 2.1, you must also use the Netdata configuration included in the repository to restore the pre‑25.04 metrics. Instructions are provided below. This action is taken since TrueNAS 25.04 dropped a lot of default metrics which doesn't make sense for me.
The goal was to get the metrics from the TrueNAS reporting tap inside my normal monitoring stack which consists of prometheus and grafana. In earlier versions of TrueNAS this was possible by utilising the collectd
graphite push service to push the metrics to a graphite_exporter
instance which then converts the metrics to prometheus metrics based on the provided mapping file. In TrueNAS scale 23.10 the reporting system was changed to netdata
and was missing the export feature all along. In 23.10.1
the export mechanism was added back in still lacking the ability to directly export the metrics to promeheus but still in the graphite form. But the metrics format changed due to the tool change.
The goal of this small repository is to provide you with a new graphite_mapping.conf
which is suitable to be used with the new metrics exposed by TrueNAS. This mapping file is in active development and may change regularly in the near future. Besides the raw mapping file a based grafana dashboard nad a quick summary of the required settings in TrueNAS are also included.
- Update dashboards
- Update metrics documentation -> move to unit label
- Persist the custom
netdata.conf
across TrueNAS Updates
See the open issues for a full list of proposed features (and known issues).
Those are the supported and tested versions of TrueNAS in combination with this exporter. Feel free to create a PR with a tested flag if you use a version not mentioned here.
TrueNAS Version | Supported | Exporter Version | Tested |
---|---|---|---|
23.10.x | ✅ | v1.x.x |
✅ by @Supporterino |
24.04.x | ✅ | v1.x.x |
✅ by @Supporterino |
24.10.x | ✅ | v1.x.x |
✅ by @Supporterino |
25.04.x | ✅ | v2.x.x |
✅ by @Supporterino |
TrueNAS SCALE can export reporting data using the Graphite protocol. Below is a clear, copyable guide to creating or editing a graphite_reporter for Prometheus, plus an important Netdata configuration note and example commands.
Creating or editing a reporter in TrueNAS SCALE
- Go to the
Reporting
tab and click theExporters
button on the top right. - Click
Add
to create a new reporter or click theEdit
pencil icon next to the reporter you wish to use.
Ensure the following fields are adjusted depending on your target app or chart, as outlined in the TrueNAS instructions.
- The prefix for the graphite metrics need to be set to
truenas
for the mapping file to work - The hostname field should be choosen according to your needs it will later populate the
instance
label of your metrics - The
update every
field should match your scrape time - For
Send Names Instead Of Ids
, leave it blank and it will default totrue
(otherwise it may error out when trying to create the exporter). - Destination IP and Port pointing to the host and port where your
graphite_exporter
is listening.
Note
You must copy the provided netdata.conf
from this repository to your TrueNAS host at /etc/netdata/netdata.conf
so Netdata uses the configuration we provide.
Example commands (run on the TrueNAS host or with appropriate privileges):
# Adjust the source path below to where you cloned/downloaded the repo
sudo cp /path/to/repo/netdata.conf /etc/netdata/netdata.conf
sudo chown root:root /etc/netdata/netdata.conf
# Restart Netdata to pick up the new config (service name may vary)
sudo systemctl restart netdata
Important
TrueNAS updates replaces /etc/netdata/netdata.conf
. You must re-copy/overwrite /etc/netdata/netdata.conf
from this repository after each TrueNAS update until a permanent fix is available. I am working on a fix to make this persistent — in the meantime, reapply the config after updates.
Optional: reapply script You can use a small script to reapply the config quickly:
#!/usr/bin/env bash
REPO_CONF="/path/to/repo/netdata.conf"
TARGET_CONF="/etc/netdata/netdata.conf"
if [ ! -f "$REPO_CONF" ]; then
echo "Source config not found: $REPO_CONF"
exit 1
fi
sudo cp "$REPO_CONF" "$TARGET_CONF"
sudo chown root:root "$TARGET_CONF"
sudo systemctl restart netdata
echo "netdata.conf applied and netdata restarted"
Make the script executable (e.g. chmod +x apply-netdata-conf.sh
) and run it after TrueNAS updates.
You obviously need a running graphite_exporter
which is scrabed by your prometheus instance and is reachable by your TrueNAS instance to push metrics to.
Check TRUENAS.md to see options to use this exporter directly inside of TrueNAS.
To utilise the provided graphite_mapping.conf
replace your existing conf of your graphite_exporter
and restart it. For the grafana dashboards you can simply import the provided json
file.
Warning
Outdated will be updated soon
See METRICS.md for the exposed metrics by this config.
The dasboards are located inside the dashboards
folder and are simple json files which can be imported into grafana und used with the metrics.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request