jq by example

Inspired by a nice tutorial on Baeldung I’ve decided to write done some usual suspects when working with jq. Hence, this is more like a cheatsheet than a regular post. ...

January 29, 2020 · 3 min · schoeffm

Network Debugging of Containerized Java Apps

The other day, I had the need to look closer into the network communication of a (dockerized) JEE application. My usual tcpdump approach wasn’t applicable though because the traffic was TLS-encrypted.Finally, I ended up with a setup where the app used a man-in-the-middle proxy for all its communication - that proxy transparently re-encrypted the traffic which gave me the chance to inspect every single message exchanged. ...

September 19, 2019 · 3 min · schoeffm

Tcpdump Common Commands

When debugging network related issues the CLI tool tcpdump is a valuable assistant. I usually use a variation of this base command: sudo tcpdump -A -i lo0 -n -s0 -v port 8080...

July 30, 2019 · 2 min · schoeffm