Skip to main content
Version: v0.30.0

Using snapshot socket

The snapshot socket gadget gathers information about TCP and UDP sockets.

On Kubernetes

We will start this demo by using nginx to create a web server on port 80:

$ kubectl create ns test-socketcollector
namespace/test-socketcollector created
$ kubectl run --restart=Never -n test-socketcollector --image=nginx nginx-app --port=80
pod/nginx-app created

Wait for the pod to get ready:

$ kubectl wait --timeout=-1s -n test-socketcollector --for=condition=ready pod/nginx-app ; kubectl get pod -n test-socketcollector
pod/nginx-app condition met
NAME READY STATUS RESTARTS AGE
nginx-app 1/1 Running 0 46s

We will now use the snapshot socket gadget to retrieve the TCP/UDP sockets information of the nginx-app pod. Notice we are filtering by namespace but we could have done it also using the podname or labels:

$ kubectl gadget snapshot socket -n test-socketcollector
K8S.NODE K8S.NAMESPACE K8S.PODNAME PROTOCOL SRC DST STATUS
minikube-docker test-socketcollect… nginx-app TCP r/0.0.0.0:80 r/0.0.0.0:0 LISTEN

In the output, "SRC" is the local IP address and port number pair. If connected, "DST" is the remote IP address and port number pair, otherwise, it will be "0.0.0.0:0". While "STATUS" is the internal status of the socket.

Now, modify the nginx configuration to listen on port 8080 instead of 80 and reload the daemon:

$ kubectl exec -n test-socketcollector nginx-app -- /bin/bash -c "sed -i 's/listen \+80;/listen\t8080;/g' /etc/nginx/conf.d/default.conf && exec nginx -s reload"
[...] signal process started

Now, we can check again with the snapshot socket gadget what the active socket is:

K8S.NODE            K8S.NAMESPACE       K8S.PODNAME        PROTOCOL SRC                      DST                      STATUS
minikube-docker test-socketcollect… nginx-app TCP r/0.0.0.0:8080 r/0.0.0.0:0 LISTEN

Delete test namespace:

$ kubectl delete ns test-socketcollector
namespace "test-socketcollector" deleted

With ig

The snapshot socket is not available on ig yet. Please check https://github.com/inspektor-gadget/inspektor-gadget/issues/744.