log_format main escape=json '{ "@timestamp": "$time_iso8601", ' '"remote_addr": "$remote_addr",' '"costime": "$request_time",' '"r... ...
分类:
其他好文 时间:
2019-05-28 14:16:34
阅读次数:
290
1、Nginx日志类型 error.log:记录Nginx处理http请求的错误的状态,以及Nginx服务本身服务运行的错误的状态 access_log:记录通过Nginx的http请求的访问状态,用于对每一次访问的请求和客户进行的交互以及对行为的一些分析 实现方法:log_format error ...
分类:
其他好文 时间:
2019-03-06 00:57:01
阅读次数:
162
GIT 常用命令 代码量统计:git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --numstat | awk ' ...
分类:
其他好文 时间:
2019-01-22 11:47:57
阅读次数:
179
在日志格式后面加上 $request_body 配置信息 log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$ht... ...
分类:
其他好文 时间:
2018-11-28 13:17:10
阅读次数:
1280
# Set the java args to high -Xmx512M -XX:MaxPermSize=256m -XX:ReservedCodeCacheSize=128m # Set the extra SBT options -Dsbt.log.format=true -Dsbt.boot. ...
分类:
其他好文 时间:
2018-11-18 11:39:19
阅读次数:
314
1) 在nginx日志access log可以记录POST请求的参数值 实现程度:日志中可以显示POST请求所提交的参数值 问题: 配置说明: log_format指令用来设置日志的记录格式,语法: log_format name format {format ...} 其中name表示定义的格式名 ...
分类:
数据库 时间:
2018-11-05 11:35:14
阅读次数:
164
随笔缘由:https://edu.cnblogs.com/campus/gzcc/GZCC-16SE1/homework/2213 githup缘由:https://github.com/tianshizhao/tianshizhao 一、基本要求 从个人项目出发,将程序改造成一个单机带用户界面(不 ...
分类:
其他好文 时间:
2018-10-25 00:15:55
阅读次数:
175
http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status ...
分类:
其他好文 时间:
2018-10-16 10:58:29
阅读次数:
191
nginx 日志相关指令主要有两条, 一条是log_format,用来设置日志格式,另外一条是access_log,用来指定日志文件的存放路径、格式和缓存大小。通俗的理解就是先用log_format来定义自己想用的日志格式,然后在用access_log定义日志时再把定义的log_format名称 跟 ...
分类:
数据库 时间:
2018-10-06 13:19:29
阅读次数:
312
官方文档: http://nginx.org/en/docs/http/ngx_http_log_module.html The ngx_http_log_module module writes request logs in the specified format. Requests are ...
分类:
其他好文 时间:
2018-10-06 00:02:41
阅读次数:
195