yihong0618 和朋友们的频道 头像

消息来源频道

yihong0618 和朋友们的频道

@hyi0618

频道8,612 位成员公开可见0 人在线

yihong0618 和朋友们的频道

成员规模8,612 位成员
在线情况0 人在线
消息总数10,129 条消息
浏览量总数3,297,173 次浏览

在这个频道里搜索消息……

t.me/hyi0618

How to probe a go process in a container (Part 1)
Suppose we have a go application named gin-demo, and we run it in a docker container as below:
sudo docker run -it --rm -p 8080:8080 -v $(pwd):/app -w /app debian ./gin-demo
We can probe the function in gin-demo as:
sudo bpftrace -e "u:./gin-demo:*Get { print(probe); }"
#ebpf
https://t.me/danteslimbo/3659