configure timeout on snmp scraping for quanta
This commit is contained in:
parent
66e6c960d3
commit
0b40cc4b9b
3 changed files with 6 additions and 2 deletions
|
@ -3,6 +3,7 @@ prometheus__scraping_quanta:
|
||||||
targets: "{{ groups.quanta }}"
|
targets: "{{ groups.quanta }}"
|
||||||
address: 127.0.0.1:9116
|
address: 127.0.0.1:9116
|
||||||
path: /snmp
|
path: /snmp
|
||||||
|
timeout: 60s
|
||||||
params:
|
params:
|
||||||
module:
|
module:
|
||||||
- quanta
|
- quanta
|
||||||
|
|
4
hosts
4
hosts
|
@ -58,7 +58,7 @@ edge
|
||||||
[ntp]
|
[ntp]
|
||||||
ntp-[1:2].int.infra.auro.re
|
ntp-[1:2].int.infra.auro.re
|
||||||
|
|
||||||
[radius]
|
[radiusng]
|
||||||
radius-[1:2].isp.infra.auro.re
|
radius-[1:2].isp.infra.auro.re
|
||||||
|
|
||||||
[vm_network:children]
|
[vm_network:children]
|
||||||
|
@ -66,7 +66,7 @@ vpn
|
||||||
edge
|
edge
|
||||||
dhcp
|
dhcp
|
||||||
dns
|
dns
|
||||||
radius
|
radiusng
|
||||||
ntp
|
ntp
|
||||||
#ldap
|
#ldap
|
||||||
isp
|
isp
|
||||||
|
|
|
@ -25,6 +25,9 @@ def convert_jobs(config):
|
||||||
if "path" in job:
|
if "path" in job:
|
||||||
config["metrics_path"] = job["path"]
|
config["metrics_path"] = job["path"]
|
||||||
|
|
||||||
|
if "timeout" in job:
|
||||||
|
config["scrape_timeout"] = job["timeout"]
|
||||||
|
|
||||||
if "address" in job:
|
if "address" in job:
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue