nginx-otel
GitHub - nginxinc/nginx-otel
インストール
code:shell
sudo apt install nginx-module-otel
code:conf
http {
otel_exporter {
endpoint localhost:4317;
}
otel_trace on;
server {
location / {
proxy_pass
http://backend;
}
}
}
shimizukawa.icon
以前自分も
https://github.com/shimizukawa/try-otel/blob/main/nginx/Dockerfile
を書いたりしていたけど、公式楽そう!