-
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…
-
List differences between two sftp hosts using golang
Hi, Just as a intermediate post as i wanted to play a little bit with golang, let me show you what i managed to put together in some days. I created a virtual machine on which i installed docker and grabbed a sftp image. You can try first two from Docker Hub, it should work.…
-
Docker statistics – way to investigate performance
Hi, I wish it would be mine but it isn’t. Quite good article from this week newsletter related to container stats from Docker containers: Analyzing Docker container performance with native tools Wish you an enjoyable read. Cheers!
-
Interesting insight in docker networking mechanism
Hi, This one is not mine, but it’s worth to mention. There are’s always interesting articles in the docker newsletter but i enjoyed very much this series and i highly recommend you to read it and try it: http://techblog.d2-si.eu/2017/04/25/deep-dive-into-docker-overlay-networks-part-1.html I would really want to work more with docker and hope in the future that 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…
-
Monitoring Kafka node using Docker
Hi, Today i am just going to point you to a very interesting article related to monitoring of Kafka node/nodes using InfluxDB, Grafana and Docker. Hope it is useful, i will surely try it in one of the days. https://softwaremill.com/monitoring-apache-kafka-with-influxdb-grafana/ Now this is not quite standard but nevertheless it is an option. Cheers!