-
Notifications
You must be signed in to change notification settings - Fork 33
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
Add support for sending the payloads using event channel #1594
Comments
Currently decision of payloads are done in following way: We decide if payloads are enabled via :
The decision where to put payloads are done in following way (if payloads are enabled via above):
I need to modify mechanism above.
This will set payload to disk:
My doubts are if we should introduced another env variable configruation option since event channel is enabled by default there therefore it requried to often use |
TODO:
|
- allows to change payload destination to event transport Closes #1594
- allows to change payload destination to event transport - by default the payloads will go to directory - it is possible to change this behaviour via: - `--payloadsdest` argument in `scope` CLI - `SCOPE_PAYLOAD_DEST` environment variable - allowed values are for the above are "event", "dir" Closes #1594
- allows to change payload destination to event transport - by default the payloads will go to directory - it is possible to change this behaviour via: - `--payloadsdest` argument in `scope` CLI - `SCOPE_PAYLOAD_DEST` environment variable - allowed values are for the above are "event", "dir" Closes #1594
- allows to change payload destination to event transport - by default the payloads will go to directory - it is possible to change this behaviour via: - `--payloadsdest` argument in `scope` CLI - `SCOPE_PAYLOAD_DEST` environment variable - allowed values are for the above are "event", "dir" Closes #1594
I have modified my solution to following model: This will set payload to disk:
This will set payload to event transport type:
This will set payload to cribl transport type:
The payloads destination can be modified in the configuration file as well:
ImportantThe change which is worth to get feedback:
While previously the payloads were sended to events (cribl) in this case WIth current changes the following commands will send payloads to cribl:
|
- allows to change payload destination to event transport - by default the payloads will go to directory - it is possible to change this behaviour via: - `--payloadsdest` argument in `scope` CLI - `SCOPE_PAYLOAD_DEST` environment variable - allowed values are for the above are "event", "dir" Closes #1594
- allows to change payload destination to event transport - by default the payloads will go to directory - it is possible to change this behaviour via: - `--payloadsdest` argument in `scope` CLI - `SCOPE_PAYLOAD_DEST` environment variable - allowed values are for the above are "event", "dir" Closes #1594
- allows to change payload destination to event transport - by default the payloads will go to directory - it is possible to change this behaviour via: - `--payloadsdest` argument in `scope` CLI - `SCOPE_PAYLOAD_DEST` environment variable - allowed values are for the above are "event", "dir" Closes #1594
- allows to change payload destination to event transport - by default the payloads will go to directory - it is possible to change this behaviour via: - `--payloadsdest` argument in `scope` CLI - `SCOPE_PAYLOAD_DEST` environment variable - allowed values are for the above are "event", "dir" Closes #1594
- allows to change payload destination to event transport - by default the payloads will go to directory - it is possible to change this behaviour via: - `--payloadsdest` argument in `scope` CLI - `SCOPE_PAYLOAD_DEST` environment variable - allowed values are for the above are "event", "dir" Closes #1594
- allows to change payload destination to event transport - by default the payloads will go to directory - it is possible to change this behaviour via: - `--payloadsdest` argument in `scope` CLI - `SCOPE_PAYLOAD_DEST` environment variable - allowed values are for the above are "event", "dir" Closes #1594
Currently, we are able to send payloads via the following channels:
cribl
destinationAfter discussing with @iapaddler, we believe it is valid to have support for sending payloads using the event channel e.g. in case when we are only interested with events from scoped application.
The text was updated successfully, but these errors were encountered: