服务器问答

win 端 Nginx 如何统计流量?
0
2021-05-18 13:17:06
idczone

目前公司开发一个程序,需要特定场景启 ngixn,windows 端的 nginix 貌似没有选项控制台输出吧,也没有流量统计的选项。从 a国外服务器ccess log 里面下手的话,也是一些 header 信息。。。感觉不好下手啊,求大佬解答。


即使 linux,控制台也没什么输出啊
都是从日志统计的

统计什么流量?
用 OpenResty 可以在日志阶段统计任何东西,包括请求和响应的信息。
用 Nginx 自身的 mirror 可以把请求镜像发送到另一个地址,但这样就统计不到响应信息,跟 rewrite 一起配置的时候也麻烦。

ngixn/nginix 是啥

我是配置 log_format 成 json 格式输出到文件,然后使用 filebeat 读取日志文件输出到 elasticsearch,之后可以用 kibana 或者 grafana 统计流量

要简单轻量的话应该用 OpenResty 来做比较好

lua ?

Nginx..好吧

是自己拼一个 json 字符串吗?学到了。确实比空格分割要好!

注意要配置 escape=json,贴一个我自用的配置:
log_format main escape=json '{"timestamp":"$time_iso8601",'
'"server_addr":"$server_addr",'
'"server_port":"$server_port",'
'"host":"$host",'
'"hostname":"$hostname",'
'"client_addr":"$remote_addr",'
'"client_port":"$remote_port",'
'"server_name":"$server_name",'
'"request_uri":"$request_uri",'
'"uri":"$uri",'
'"https":"$https",'
'"x_forwarded_for":"$http_x_forwarded_for",'
'"scheme":"$scheme",'
'"request_method":"$request_method",'
'"args":"$args",'
'"referer":"$http_referer",'
'"http_user_agent":"$http_user_agent",'
'"request_length":$request_length,'
'"content_length":"$content_length",'
'"content_type":"$content_type",'
'"body_bytes_sent":$body_bytes_sent,'
'"bytes_sent":$bytes_sent,'
'"request_time":$request_time,'
'"status":$status,'
'"upstream_status": "$upstream_status",'
'"upstream_addr":"$upstream_addr",'
'"upstream_time":"$upstream_response_time",'
'"upstream_cache_status":"$upstream_cache_status"'
'}';

不好意思打字有点快没注意

可以 研究下。

这么玩不会把 io 堵死吗。。。

其实并没有多几个字符吧?一个空格变成俩引号一个逗号而已

数据地带为您的网站提供全球顶级IDC资源
在线咨询
专属客服