-
Command to start sysdig container – redundant but useful
Hi, This is more like a easier way to find the command without searching the net: docker run -it –rm –name=sysdig –privileged=true \ –volume=/var/run/docker.sock:/host/var/run/docker.sock \ –volume=/dev:/host/dev \ –volume=/proc:/host/proc:ro \ –volume=/boot:/host/boot:ro \ –volume=/lib/modules:/host/lib/modules:ro \ –volume=/usr:/host/usr:ro \ sysdig/sysdig The actual command on starting a sysdig container. I will get more in depth with some Kafka cluster aggregated…
-
Memory debug by Heroku guys on Apache Kafka – nice one
Hi, I know, i should write more about my experience with Apache Kafka, have patience, it’s still building, but until then please check this article: https://blog.heroku.com/fixing-kafka-memory-leak Be aware of the things that you want to include in functionalities and code that is written beside Apache Kafka functionalities, it might get you in to trouble. I…
-
Sysdig container isolation case debugged on kubernetes
Hi, I didn’t get to actual test anything related to this but i managed to find a very interesting article that might be lost if you are not a sysdig fan. You can find it at following link https://sysdig.com/blog/container-isolation-gone-wrong/ To put into perspective, this tool is used for some very interesting debugging situation, i have played…