How to use output options in a correct manner? #1755
Answered
by
rafaeldtinoco
sbmthakur
asked this question in
Questions and Help
-
I am passing the option docker run --name tracee --rm -it \
--pid=host --cgroupns=host --privileged \
-v /etc/os-release:/etc/os-release-host:ro -v /tmp/tracee:/tmp/tracee \
-e LIBBPFGO_OSRELEASE_FILE=/etc/os-release-host \
-e TRACEE_EBPF_ONLY=1 \
aquasec/tracee:latest --trace container=xxxxx --output table --output detect-syscall` It results in the following error:
What's the correct way to pass those options? |
Beta Was this translation helpful? Give feedback.
Answered by
rafaeldtinoco
May 13, 2022
Replies: 1 comment
-
Hello @sbmthakur, can you try something like:
And you can change "json" to other output format types. In here I'm filtering all "bash processes" and "all its childs". Hope it helps, let me know if you have any other questions, might help others as well. Thanks |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sbmthakur
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @sbmthakur, can you try something like:
And you can change "json" to other output format types. In here I'm filtering all "bash processes" and "all its childs". Hope it helps, let me know if you have any other questions, might help others as well.
Thanks