10 lines
380 B
Nix
10 lines
380 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.prometheus.exporters.snmp = {
|
|
enable = true;
|
|
configurationPath = "/tank/services/metrics/prometheus/snmp.yml";
|
|
# snmp.yml = https://github.com/prometheus/snmp_exporter/blob/main/snmp.yml + https://global.download.synology.com/download/Document/Software/DeveloperGuide/Firmware/DSM/All/enu/Synology_DiskStation_MIB_Guide.pdf
|
|
};
|
|
}
|