【Foreword】 The SMS function of our project is to connect to a third party. The original receipt confirmation request from the third party was a get request. When we were troubleshooting, we could get the parameters of the request from the other party through the nginx log. Recently, we changed to another third party. The confirmation request from the new third party was a post. When we were troubleshooting, we found that nginx did not print the specific parameters. So we consulted some information and did experiments and online adjustments with the operation and maintenance. After the adjustment, we can get the request parameters, which is more convenient for us to troubleshoot the problem. [Nginx sets print post request parameters] 1. Set the Nginx configuration file (nginx.conf) to print post request parameters: Add "dm":$request_body to the log_format of the http module to prevent Chinese garbled characters and add escape=json log_format main escape=json '{ "@timestamp": "$time_iso8601", ' '"remote_addr": "$remote_addr",' '"costime": "$request_time",' '"realtime": "$upstream_response_time",' '"status": $status,' '"x_forwarded": "$http_x_forwarded_for",' '"referer": "$http_referer",' '"request": "$request",' '"upstr_addr": "$upstream_addr",' '"bytes":$body_bytes_sent,' '"dm":$request_body,' '"agent": "$http_user_agent" }'; access_log /var/log/nginx/access.log main; 2. Comparison of effects before and after setting 1. JSON format of sending request { "results":[ { "price":{ "pricePerMessage":0.01, "currency":"aaa" }, "messageId":"ff4804ef-6ab6-4abd-984d-ab3b1387e852", "to":"385981178", "sentAt":"2015-02-12T09:58:20.323+0100", "doneAt":"2015-02-12T09:58:20.337+0100", "smsCount":1, "status":{ "id":5, "groupId":3, "groupName":"DELIVERED", "name":"DELIVERED_TO_HANDSET", "description":"Message delivered to handset" }, "error":{ "groupId":0, "groupName":"OK", "id":0, "name":"NO_ERROR", "description":"No Error", "permanent":false } } ] } 2. The result of nginx printout before setting the post request obviously does not print out the parameters 3. After setting the post request, nginx prints the parameters and finds that the parameters are printed but there are garbled characters 4. Solve the garbled code (1) You need to add escape=json after log_format main (2) The nginx version needs to be 1.15.1 or above (3) Satisfy the final printed results above 3. Necessity of viewing nginx logs 1. More comprehensive: It can record visitor's IP browser and request parameters and other information more comprehensively than Java request log; 2. When the number of requests is large, the Java program cannot handle it. At this time, the Java log does not have redundant access requests, but nginx does, which is helpful for troubleshooting and optimizing system performance. 【Summarize】 1. Problems can be quickly located through logs; 2. When troubleshooting a problem, you need to consider it comprehensively and from multiple dimensions. This is the end of this article about how to set Nginx log printing post request parameters. For more relevant Nginx log printing post request parameters, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Brief Analysis of MySQL B-Tree Index
>>: Example of implementing element table row and column dragging
sed is a character stream editor under Unix, that...
Over a period of time, I found that many people d...
MTR stands for Mini-Transaction. As the name sugg...
Table of contents Problems with resource manageme...
Docker private image library Docker private image...
Win10 system locally installed MySQL8.0.20, perso...
Table of contents 1. Understanding Queues 2. Enca...
Source code preview: https://github.com/jdf2e/nut...
This article example shares the specific code of ...
1. Check and install pssh, yum list pssh 2. Becau...
I saw in the LOFTER competition that it was mentio...
XHTML is the basis of CSS layout. jb51.net has al...
ClickHouse is an open source column-oriented DBMS...
To master: localStorage, component encapsulation ...
Table of contents Stabilization Throttling: Anti-...