Re: [prometheus-users] snmp exporter & snmpv3

2024-01-20 Thread 'Brian Candler' via Prometheus Users
> If you have a working SNMP.yml thrn Just add this at the top of the File But indented and nested under the "auths" key. > f you use Cisco devices you have to use > AES-128C or AES-256C That is not true. You can use "AES" as normal, or you can use "AES192C" or "AES256C". There is no

[prometheus-users] Metrics from PUSH Consumer - Relabeled Metrics? Check "Up" state?

2024-01-20 Thread Alexander Wilke
Hello, I have some Enterprise Firewalls which unfortunately only can PUSH metrics to remote_write API of Prometheus. Vendor has No Plans to offer PULL. Which possibilities do I have in Prometheus to Change some metrics at the time they arrive on the API? I want to add some Custom Labels based

Re: [prometheus-users] snmp exporter & snmpv3

2024-01-20 Thread Alexander Wilke
If you have a working SNMP.yml thrn Just add this at the top of the File CustomName: version: 3 security_level: authPriv username: "username" auth_protocol: SHA password: 'password' priv_protocol: AES The "CustomName" is what you use in Prometheus.yml as auth Module. If