NGINX is a free, open source, and high-performance server that serves as an HTTP server
and reverse proxy. You can perform tracing analysis on NGINX to better understand
the status of your application services. This topic shows you how to perform tracing
analysis on NGINX.
Overview
If a slow response occurs in a microservice that uses NGINX as a proxy, you cannot
estimate the impact of the slow response because no data is collected. In this case,
you can use Tracing Analysis to trace NGINX requests for the microservice and calculate
the number of page views that are affected by the slow response.
Preparations
- Log on Tracing Analysis console.
- In the left-side navigation pane, click Cluster Configurations.
- On the Cluster Configurations page, click the Access point information tab. Then, turn on Show Token for the Cluster Information parameter.
- Set the Client parameter to Zipkin.
- In the Related Information column of the table in the lower part, click the copy icon
next to the endpoint that you want to use.

Note If you deploy your application in an Alibaba Cloud production environment, select
a private endpoint. Otherwise, select a public endpoint.
Procedure
- Pull an image from the registry.
sudo docker pull registry.cn-hangzhou.aliyuncs.com/public-community/nginx-zipkin:0.1
- Run NGINX in a Docker container.
docker run --rm -p 80:80 -e "COLLECTOR_HOST=${ZIPKIN_ENDPOINT}?" -d registry.cn-hangzhou.aliyuncs.com/public-community/nginx-zipkin:0.1
Set the ${ZIPKIN_ENDPOINT}
variable to the version 1 endpoint of Zipkin that you copy in Preparations, but remove "http://" and suffix the value witha question mark (?).
Example:
docker run --rm -p 80:80 -e "COLLECTOR_HOST=tracing-analysis-dc-hz.aliyuncs.com/adapt_******_******/api/v1/spans?" -d registry.cn-hangzhou.aliyuncs.com/public-community/nginx-zipkin:0.1
- Visit NGINX in a browser.
Enter localhost/nginx.conf or curl "localhost/nginx.conf" in the address bar of a
browser to visit NGINX.
- View the trace data of NGINX.
Deploy and trace NGINX in a Docker container
- Download, build, and then deploy a Dockerfile.
wget https://arms-apm.oss-cn-hangzhou.aliyuncs.com/demo/nginx-zipkin-docker.tgz
tar -xzvf nginx-zipkin-docker.tgz
cd nginx-zipkin
// Build the Dockerfile.
docker build --rm --tag nginx-zipkin:0.1
- Run Docker.
docker run --rm -p 80:80 -e "COLLECTOR_HOST=${ZIPKIN_ENDPOINT}?" -d nginx-zipkin:0.1
Set the ${ZIPKIN_ENDPOINT}
variable to the version 1 endpoint of Zipkin that you copy in Preparations, but remove "http://" and suffix the value witha question mark (?).
Example:
docker run --rm -p 80:80 -e "COLLECTOR_HOST=tracing-analysis-dc-hz.aliyuncs.com/adapt_123@abc_456@efg/api/v1/spans?" -d nginx-zipkin:0.1
Deploy and trace NGINX on an ECS instance
Use Zipkin to perform tracing analysis.
- Download Zipkin to a working directory.
wget https://github.com/rnburn/zipkin-cpp-opentracing/releases/download/v0.5.2/linux-amd64-libzipkin_opentracing_plugin.so.gz
gunzip linux-amd64-libzipkin_opentracing_plugin.so.gz
sudo cp linux-amd64-libzipkin_opentracing_plugin.so /usr/local/lib/libzipkin_opentracing_plugin.so
- Configure the /usr/local/nginx/conf/nginx.conf file.
load_module modules/ngx_http_opentracing_module.so;
events {}
http {
opentracing on;
opentracing_load_tracer /usr/local/lib/libzipkin_opentracing.so /etc/zipkin-config.json;
server {
error_log /var/log/nginx/debug.log debug;
listen 80;
location ~ {
opentracing_operation_name $uri;
opentracing_trace_locations off;
# Navigate to the proxy service. Set this parameter to a proper value as required.
proxy_pass http://127.0.0.1:8081;
opentracing_propagate_context;
}
}
}
- Set the Zipkin parameters in the /etc/zipkin-config.json file.
{
"service_name": "nginx",
"collector_host": "zipkin"
}
If you use the Zipkin service that is managed by Alibaba Cloud, set the collector_host parameter to an endpoint of Zipkin.
Note Enter the version 1 endpoint of Zipkin that you copy in
Preparations, but remove "http://" and suffix the value witha question mark (?).
"collector_host": "tracing-analysis-dc-hz.aliyuncs.com/adapt_abc123@abc456_abc123@abc356/api/v1/spans?"
- Set the sample_rate parameter to specify the sampling ratio.
// Set the sampling ratio to 10%.
"sample_rate":0.1
- Run NGINX and request the NGINX service.
sudo /usr/local/nginx/sbin/nginx
curl "http://localhost"
View the results
Wait for a moment. Then, log on to the Tracing Analysis console. If monitoring data
appears, the tracing is successful. If you have questions about how to monitor NGINX,
contact the DingTalk account osfriend.