Fetch instead of pull? #25876
Answered
by
thomasqueirozb
malhoudmouad
asked this question in
Q&A
QuestionHey, I know it's not the standard or the common practice, but is there a way to fetch/pull from the agregator (agregator -> multiple agents) instead of having agents pushing (multiples agents -> agregator) ? In a context where security policy inforces that the domain is the one that goes to reach outside (instead of the outside reaching to the inside of the network).. Thanks Vector ConfigNo response Vector LogsNo response |
Answered by
thomasqueirozb
Jul 21, 2026
Replies: 1 comment 3 replies
|
Hi @malhoudmouad, does the http_client source fit your use case? It will make an HTTP request every scrape_interval_secs (15 seconds by default). |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, you'd need to implement some http queuing system for this to work. This is not a scenario we support out of the box.
You may want to consider other alternatives that may or may not work.
Even with ingress completely disabled, a protocol where the agent initiates the connection may still work. Once a connection is established, data should be able to flow in both directions - otherwise HTTP wouldn't work for example. It is possible that another protocol that requires a connection to be established beforehand can work. You can try out the kafka source.
Alternatively y…