-
Notifications
You must be signed in to change notification settings - Fork 166
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
new(userspace/libsinsp): support plugins in sinsp-example. #2179
Conversation
/milestone 0.20.0 |
@@ -55,13 +55,16 @@ static bool ppm_sc_modifies_state = false; | |||
static bool ppm_sc_repair_state = false; | |||
static bool ppm_sc_state_remove_io_sc = false; | |||
static bool enable_glogger = false; | |||
static string engine_string = KMOD_ENGINE; /* Default for backward compatibility. */ | |||
static string engine_string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is initialized below when empty.
This way, we can check if another engine was already set and give an error.
@@ -467,6 +536,8 @@ void formatted_dump(sinsp&, sinsp_evt* ev) { | |||
} else if(ev->get_category() == EC_NET || ev->get_category() == EC_IO_READ || | |||
ev->get_category() == EC_IO_WRITE) { | |||
net_formatter->tostring(ev, output); | |||
} else if(ev->get_info()->category & EC_PLUGIN) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can't use ev->get_category()
because that only works for syscall-based events.
Perf diff from master - unit tests
Heap diff from master - unit tests
Heap diff from master - scap file
Benchmarks diff from master
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2179 +/- ##
==========================================
- Coverage 75.16% 75.07% -0.10%
==========================================
Files 257 257
Lines 33736 33779 +43
Branches 5755 5788 +33
==========================================
Hits 25359 25359
- Misses 8377 8420 +43
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
2da4baa
to
3c19c0c
Compare
|
Signed-off-by: Federico Di Pierro <[email protected]>
3c19c0c
to
741a53d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Andreagit97, FedeDP The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What type of PR is this?
/kind feature
Any specific area of the project related to this PR?
/area libsinsp
Does this PR require a change in the driver versions?
What this PR does / why we need it:
Expands sinsp-example to support plugins.
This will be useful to test plugins; moreover in the future when container metadata support will become a plugin(falcosecurity/falco#3403), this will be needed to run tests in CI (like for example e2e tests).
To pass init config/open params, i chose to use a single string following this pattern:
filepath.so|{initconfig}|{openParams}
, eg:Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Does this PR introduce a user-facing change?: