Kevin Retzke

Results 33 comments of Kevin Retzke

Just a note, since I'm not sure it was clear from the conversation so far, this is breaking the collection of _all_ zpool metrics, since if the `*/io` procfiles aren't...

Thanks for the PR! Personally I prefer baking baking config files into the images, especially for dev/demo environments (I realize that many people are using this as-is though). The process...

@frosty5689 This would be better in a new issue (although thanks for reminding me of this PR). Host networking is used because it's the simplest way to get a working...

On Linux, CPU temperatures are collected by the node exporter; I use the following query: `node_hwmon_temp_celsius{chip="platform_coretemp_0"}` (chip label will vary). Disk temperatures take some more work, I use the [smartmom...

See documentation here: https://github.com/prometheus/node_exporter#textfile-collector You run the texfile exporter on some frequency (I put it in a [cron job](https://www.tutorialspoint.com/unix_commands/crontab.htm) running every five minutes), writing to a file in a directory...

Note that on Ubuntu > 20.04 (maybe earlier) you can just `sudo apt install prometheus-node-exporter`, which will include the SMART monitoring by default.

mtail handles log file rotation (my logs rotate every 20 MB). So long as you're mounting the log directory into the container and not just the file it should work...

If you have mtail running in windows then you can just remove the mtail service from the compose file, and update the prometheus config to scrape mtail at `host.docker.internal:9182`

Try moving some services out of Docker, notably the exporters.

That's a good idea @Totalus, and is how graphiql does it, making it easy for one to copy-paste queries. We'll need to be careful about quoting, can we do any...