Replies: 2 comments 1 reply
-
I would do regex or glob matching. Probably not SQL style. Seems a bit like over-optimization. If targets support higher walk concurrency, maybe what we should support is in-module concurrency in addition to module-by-module concurrency. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all
with regards to multi modules
A call like
http://localhost:9116/snmp?target=192.0.0.8&module=if_mib&module=arista_sw_1&module=arista_sw&module_2=arista_sw_3
could also be done like that
http://localhost:9116/snmp?target=192.0.0.8&module=if_mib&module=arista_sw_.*
Benefits:
In case you add/remove a module from that "group" nothing needs to be done in prometheus, all only local to exporter.
All tuning in terms or parallelism is exporter only, and decoupled from settings in prometheus
to be discussed what pattern to use if regex style of DB style, I see several ways possible...
What are your thoughts?
Thanks for feedback
Beta Was this translation helpful? Give feedback.
All reactions