prod: telemetry: Add smartctl_exporter based on staging work #53
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "prod_smartctl_monitoring"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -17,2 +17,4 @@
key_file: /etc/prometheus/consul-client.key
- job_name: 'smartctl-exporter'
scrape_interval: 60s
Do we really need something as low as 60s ? Would 300s do?
This is the default interval from smartctl_exporter (I guess it caches data if requested more often than once every 60s)
But you're right, we don't necessarily have to poll that often.
@ -0,0 +62,4 @@
args = [
"--web.listen-address=0.0.0.0:9101"
]
network_mode = "host"
Do we need the host network?
No, I'll fix that.