背景
NGINX 是一個(gè)通用且流行的應(yīng)用程序。也是最流行的 Web 服務(wù)器,它可用于提供靜態(tài)文件內(nèi)容,但也通常與其他服務(wù)一起用作分布式系統(tǒng)中的組件,在其中它用作反向代理、負(fù)載均衡 或 API 網(wǎng)關(guān)。
分布式追蹤 distributed tracing 是一種可用于分析與監(jiān)控應(yīng)用程序的機(jī)制,將追蹤在從源到目的的整個(gè)過程中的單個(gè)請(qǐng)求,這與僅通過單個(gè)應(yīng)用程序域來追蹤請(qǐng)求的形式不同。
換句話說,我們可以說分布式追蹤是對(duì)跨多個(gè)系統(tǒng)的多個(gè)請(qǐng)求的拼接。拼接通常由一個(gè)或多個(gè)相關(guān) ID 完成,并且跟蹤通常是一組記錄的、跨所有系統(tǒng)的結(jié)構(gòu)化日志事件,存儲(chǔ)在一個(gè)中心位置。
在這種背景的情況下, OpenTracing 應(yīng)運(yùn)而生。OpenTracing 是一個(gè)與應(yīng)用供應(yīng)商無關(guān)的 API,它可幫助開發(fā)人員輕松地跟蹤單一請(qǐng)求的域。目前有多種開源產(chǎn)品都支持 OpenTracing(例如,Jaeger, skywalking 等),并將其作為一種檢測(cè)分布式追蹤的標(biāo)準(zhǔn)化方法。
本文將圍繞,從 0 到 1 實(shí)現(xiàn)在 nginx 配置分布式追蹤的架構(gòu)的簡單實(shí)例說明。本文實(shí)例使用的組件為
- nginx[1] v1.22
- jaeger-all-in-on[2] v1.38
- nginx-opentracing[3] v1.22
- jaeger-client-cpp[4] v0.9
源碼構(gòu)建 nginx-opentracing
準(zhǔn)備 nginx-opentracing
nginx-opentracing[5] 倉庫中可以看到,官方為每個(gè) nginx 版本都提供了一個(gè)編譯好的動(dòng)態(tài)庫(Nginx1.19.13+),我們可以直接拿來使用這個(gè)動(dòng)態(tài)庫,如果你想將這個(gè)利用 Nginx 提供的編譯參數(shù) --add-module=/path/to/module 構(gòu)建為 nginx 的內(nèi)置功能的話,可能會(huì)出現(xiàn)一些問題,例如下面的一些錯(cuò)誤:
ngx_http_opentracing_module.so/configwasfound
/root/nginx-opentracing-0.25.0/opentracing//src/ngx_http_opentracing_module.cpp
Infileincludedfrom/root/nginx-opentracing-0.25.0/opentracing//src/ngx_http_opentracing_module.cpp0:
/root/nginx-opentracing-0.25.0/opentracing//src/load_tracer.h38:fatalerror:opentracing/dynamic_load.h:Nosuchfileordirectory
根據(jù) issue[6] 中查詢得知 nginx-opentracing 需要嵌入到 nginx 中,是需要一些 opentracing-cpp[7] 因?yàn)閷?duì) c++不熟,嘗試調(diào)試很久還是上面的錯(cuò)誤,故直接使用了官方提供的動(dòng)態(tài)庫。
準(zhǔn)備 jaeger-client-cpp
根據(jù) nginx-opentracing 中提到的,還需要一個(gè) jaeger-client-cpp[8] 的 tracer 才可以正常運(yùn)行(這也是作為 jaeger 架構(gòu)中的角色)
來到 jaeger-client-cpp 看到 Release 提供的編譯好的動(dòng)態(tài)庫已經(jīng)很久了,而最新版都沒有提供相應(yīng)編譯的版本,需要我們自己編譯
說明:編譯依賴 CMake 3.3+,gcc 4.9.2+
我們的編譯環(huán)境使用 CentOS 7 默認(rèn) gcc 與 CMake 都符合要求需要自行編譯兩個(gè)的版本。
編譯 gcc
gcc 下載地址:
https://ftp.gnu.org/gnu/gcc/[9]
cdgcc-5.4.0
./contrib/download_prerequisites
mkdirgcc-build-5.4.0
cdgcc-build-5.4.0
/usr/local/src/gcc-5.4.0/configure
--enable-checking=release
--enable-languages=c,c++
--disable-multilib
make&&makeinstall
參考這篇文章:升級(jí) GCC[10]
cd/usr/bin/
mvgccgcc_back
mvg++g++_back
ln-s/usr/local/bin/gccgcc
ln-s/usr/local/bin/g++g++
編譯時(shí)遇到幾個(gè)問題
/lib64/libstdc++.so.6: version GLIBCXX_3.4.20' not found
gcc 編譯,libgcc動(dòng)態(tài)庫有改動(dòng),恢復(fù)原狀即可
configure:error:C++compilermissingorinoperational
make[2]:***[configure-stage1-libcpp]Error1
make[2]:Leavingdirectory`/home/clay/programming/C++/gcc-4.8.1'
make[1]:***[stage1-bubble]Error2
make[1]:Leavingdirectory`/home/clay/programming/C++/gcc-4.8.1'
make:***[all]Error2
編譯 cmake
./configure--prefix=/path/to/app
make
makeinstall
這里遇到一個(gè)小問題 編譯過程中遇到 [libstdc++.so.6: version GLIBCXX_3.4.20 not found
因?yàn)檫@里使用了自己編譯的 gcc 版本,需要指定下動(dòng)態(tài)庫的路徑[11]
LD_LIBRARY_PATH=/usr/local/lib64./configure--prefix=/usr/local/cmake
編譯 jaeger-client-cpp
這里根據(jù)官方提供的步驟操作即可
cdjaeger-client-cpp-0.9.0/
mkdirbuild
cdbuild
#這里建議使用下特色上網(wǎng),編譯過程中會(huì)使用Hunter自動(dòng)下載所需的依賴項(xiàng)
ALL_PROXY=http://x.0.0.x:10811/usr/local/cmake/bin/cmake..
make
注:依賴項(xiàng)挺大的,下載時(shí)間可能很長,會(huì) hang 主,只需等待結(jié)束即可
編譯完成后 libjaegertracing.so.0.9.0 則是我們需要的
編譯 nginx
./configure
--user=web_www
--group=web_www
--with-pcre
--with-compat
--with-http_ssl_module
--with-http_gzip_static_module
--prefix=/root/nginx
--with-http_stub_status_module
--with-compat 必須加上,表面允許使用動(dòng)態(tài)庫,否則編譯完在啟動(dòng)時(shí)會(huì)報(bào)下面的錯(cuò)誤
nginx:[emerg]module"/root/nginx/conf/ngx_http_opentracing_module.so"isnotbinarycompatiblein/root/nginx/conf/nginx.conf:1
遇到的問題,cc nou found,這里只需將 gcc 軟連接一份為 cc 即可
配置 nginx
準(zhǔn)備 jaeger-client 的配置
jaeger.json,參數(shù)的說明可以參考configuration[12]
{
"service_name":"nginx",//服務(wù)名
"sampler":{
"type":"const",
"param":1
},
"reporter":{
"localAgentHostPort":"jaeger:6831"//jaegeragent的地址
},
"headers":{//jaeger的默認(rèn)的jaegerBaggage頭設(shè)置
"jaegerDebugHeader":"jaeger-debug-id",
"jaegerBaggageHeader":"jaeger-baggage",
"traceBaggageHeaderPrefix":"uberctx-"
},
"baggage_restrictions":{
"denyBaggageOnInitializationFailure":false,
"hostPort":""
}
}
在 nginx 中開啟 opentracing
對(duì)于更多的 nginx-opentracing 的配置說明參數(shù)可以參考 Reference.md[13]
#加載 OpenTracing 動(dòng)態(tài)模塊。
load_moduleconf/ngx_http_opentracing_module.so;
worker_processes1;
userrootroot;
events{
worker_connections1024;
}
http{
log_formatopentracing'{"timestamp":"$time_iso8601",'
'"source":"$server_addr",'
'"hostname":"$hostname",'
'"ip":"$http_x_forwarded_for",'
'"traceID":"$opentracing_context_uber_trace_id",'
'"client":"$remote_addr",'
'"request_method":"$request_method",'
'"scheme":"$scheme",'
'"domain":"$server_name",'
'"referer":"$http_referer",'
'"request":"$request_uri",'
'"args":"$args",'
'"size":$body_bytes_sent,'
'"status":$status,'
'"responsetime":$request_time,'
'"upstreamtime":"$upstream_response_time",'
'"upstreamaddr":"$upstream_addr",'
'"http_user_agent":"$http_user_agent",'
'"https":"$https"'
'}';
#加載tracer,這里使用的jaeger,需要傳遞配置文件
opentracing_load_tracerconf/libjaegertracing.soconf/jaeger.json;
#啟用tracing
opentracingon;
#設(shè)置tag,可選參數(shù)
opentracing_taghttp_user_agent$http_user_agent;
includemime.types;
default_typeapplication/octet-stream;
sendfileon;
keepalive_timeout65;
server{
listen80;
server_namelocalhost;
location/{
opentracing_operation_name$uri;
opentracing_propagate_context;
roothtml;
indexindex.htmlindex.htm;
}
access_loglogs/access.logopentracing;
error_page500502503504/50x.html;
location=/50x.html{
roothtml;
}
}
}
注:這里使用的 opentracing-nginx 的動(dòng)態(tài)庫為 ot16 ,linux-amd64-nginx-1.22.0-ot16-ngx_http_module.so.tgz ,另外一個(gè)版本不兼容,-t 檢查語法時(shí)會(huì)提示
配置說明
對(duì)于每一個(gè) location 都可以對(duì)其設(shè)置別名,這個(gè)就是 opentracing_operation_name 與 opentracing_location_operation_name 的區(qū)別
http{
...
location=/upload/animal{
opentracing_location_operation_nameupload;
...
更多的配置說明可以參考 Tutorial.md[14]
此時(shí)我們可以在 jaeger 上查看,可以看到 NGINX 的 span(因?yàn)檫@里只配置了 NGINX,沒有配置更多的后端)。
審核編輯 :李倩
-
服務(wù)器
+關(guān)注
關(guān)注
12文章
9219瀏覽量
85597 -
架構(gòu)
+關(guān)注
關(guān)注
1文章
516瀏覽量
25494 -
nginx
+關(guān)注
關(guān)注
0文章
151瀏覽量
12188
原文標(biāo)題:讓你的 Nginx 支持分布式追蹤 OpenTracing
文章出處:【微信號(hào):magedu-Linux,微信公眾號(hào):馬哥Linux運(yùn)維】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論