mirror of
https://github.com/falcosecurity/falco.git
synced 2025-08-16 21:27:38 +00:00
feat(cli): adding -u to flip inspector method calls
udig support through the -u command line flag Signed-off-by: Kris Nóva <kris@nivenly.com> Co-authored-by: Kris Nóva <kris@nivenly.com>
This commit is contained in:
parent
bca98e0419
commit
c743f1eb68
@ -443,6 +443,7 @@ int falco_init(int argc, char **argv)
|
|||||||
set<string> disable_sources;
|
set<string> disable_sources;
|
||||||
bool disable_syscall = false;
|
bool disable_syscall = false;
|
||||||
bool disable_k8s_audit = false;
|
bool disable_k8s_audit = false;
|
||||||
|
bool udig = false;
|
||||||
|
|
||||||
// Used for writing trace files
|
// Used for writing trace files
|
||||||
int duration_seconds = 0;
|
int duration_seconds = 0;
|
||||||
@ -482,6 +483,7 @@ int falco_init(int argc, char **argv)
|
|||||||
{"stats-interval", required_argument, 0},
|
{"stats-interval", required_argument, 0},
|
||||||
{"support", no_argument, 0},
|
{"support", no_argument, 0},
|
||||||
{"unbuffered", no_argument, 0, 'U'},
|
{"unbuffered", no_argument, 0, 'U'},
|
||||||
|
{"udig", no_argument, 0, 'u'},
|
||||||
{"validate", required_argument, 0, 'V'},
|
{"validate", required_argument, 0, 'V'},
|
||||||
{"version", no_argument, 0, 0},
|
{"version", no_argument, 0, 0},
|
||||||
{"writefile", required_argument, 0, 'w'},
|
{"writefile", required_argument, 0, 'w'},
|
||||||
@ -500,7 +502,7 @@ int falco_init(int argc, char **argv)
|
|||||||
// Parse the args
|
// Parse the args
|
||||||
//
|
//
|
||||||
while((op = getopt_long(argc, argv,
|
while((op = getopt_long(argc, argv,
|
||||||
"hc:AbdD:e:F:ik:K:Ll:m:M:No:P:p:r:S:s:T:t:UvV:w:",
|
"hc:AbdD:e:F:ik:K:Ll:m:M:No:P:p:r:S:s:T:t:UuvV:w:",
|
||||||
long_options, &long_index)) != -1)
|
long_options, &long_index)) != -1)
|
||||||
{
|
{
|
||||||
switch(op)
|
switch(op)
|
||||||
@ -607,6 +609,9 @@ int falco_init(int argc, char **argv)
|
|||||||
buffered_outputs = false;
|
buffered_outputs = false;
|
||||||
buffered_cmdline = true;
|
buffered_cmdline = true;
|
||||||
break;
|
break;
|
||||||
|
case 'u':
|
||||||
|
udig = true;
|
||||||
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
verbose = true;
|
verbose = true;
|
||||||
break;
|
break;
|
||||||
@ -1091,8 +1096,16 @@ int falco_init(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
open_t open_cb = [](sinsp* inspector) {
|
open_t open_cb = [&udig](sinsp* inspector)
|
||||||
|
{
|
||||||
|
if(udig)
|
||||||
|
{
|
||||||
|
inspector->open_udig();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
inspector->open();
|
inspector->open();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
open_t open_nodriver_cb = [](sinsp* inspector) {
|
open_t open_nodriver_cb = [](sinsp* inspector) {
|
||||||
inspector->open_nodriver();
|
inspector->open_nodriver();
|
||||||
|
Loading…
Reference in New Issue
Block a user