-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Filebeat][httpjson input] Possibility to chain requests #22590
Comments
Pinging @elastic/security-external-integrations (Team:Security-External Integrations) |
@marc-gr Just wanted to ping you on this so that we have a reference issue, but its for the future currently and nothing with high prio. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I'm sure there's already use cases out there, but I have an example use case that I'd like to ingest Workflow Usage data from GitHub. However, currently that requires you:
All while respecting Rate Limits. This may be a lot to ask of Filebeat/beats, but it'd be awesome if it "just worked"! |
The feature was implemented in #29816. |
This is a issue to track a feature that would open up even more possibilities for the httpjson input, which is chained requests.
This is meant at a "next step" possibility after #22320.
A chained request would be the possibility to specify a initial request, and from that request you could either extract a single value and reuse that in the URL or body of the follow-up request.
The body of the follow-up request is what will be in the resulting document sent to elasticsearch.
An example would be threat intelligence, using Anomali's Limo as an example, since they have multiple URL's it would be good to communicate with the API that lists all URL's, and then create a request to each of them.
Request:
GET - https://limo.anomali.com/api/v1/taxii2/feeds/collections/
Response:
And from that I would like to call a URL using each of the ID fields like:
However there might be usecases in which the variable would be used in a BODY rather than as a query parameter.
It might also be that we need to separate settings between pre-request and the rest of requests. For example the initial request might not need authentication while we would want to use the response in a Auth Header for the upcoming requests, in which they need different request settings.
Currently I don't see a need to be able to set transforms for each request after the initial request, they should all share transforms for now.
Other usecases would be for example to call the API of virustotal to get a list of fileID's, then contacting another API per fileID to gather more details around each of them. Maybe @dcode could elaborate a bit more with API examples on this one?
The text was updated successfully, but these errors were encountered: