nginx lua以html显示,nginx 支持lua及lua脚本格式化日志

1.安装LuaJIT-2.0.4

链接:

http://luajit.org/download.html

tar -xf LuaJIT-2.0.4.tar.gz

cd LuaJIT-2.0.4

make PREFIX=/usr/local/luajit

make install PREFIX=/usr/local/luajit

2.修改环境变量

vim /etc/profile

export LUAJIT_LIB=/usr/local/luajit/lib

export LUAJIT_INC=/usr/local/luajit/include/luajit-2.0

source /etc/profile

3.下载nginx lua模块

ngx_devel_kit 链接:https://github.com/simpl/ngx_devel_kit/tags

lua-nginx-module 链接:https://github.com/openresty/lua-nginx-module/tags

4.编译nginx 增加支持模块

cd /tmp/soft/

tar -xf ngx_devel_kit-0.3.0.tar.gz

tar -xf lua-nginx-module-0.10.5.tar.gz

4.1.编译nginx

tar -xf nginx-1.9.14.tar.gz

cd nginx-1.9.14

./configure \

--prefix=/app/local/nginx \

--pid-path=/app/local/nginx \

--user=nginx \

--group=nginx \

--with-threads \

--with-file-aio \

--with-http_ssl_module \

--with-http_v2_module \

--with-http_addition_module \

--with-http_sub_module \

--with-http_dav_module \

--with-http_flv_module \

--with-http_mp4_module \

--with-http_perl_module \

--with-mail \

--with-http_gzip_static_module \

--with-http_auth_request_module \

--with-http_random_index_module \

--with-http_secure_link_module \

--with-http_degradation_module \

--with-http_slice_module \

--with-http_stub_status_module \

--with-http_perl_module \

--with-zlib=/tmp/soft/zlib-1.2.8 \

--with-stream \

--with-stream_ssl_module \

--with-pcre=/tmp/soft/pcre-8.37 \

--with-openssl=/tmp/soft/openssl-1.0.2 \

--with-libatomic \

--add-module=/tmp/soft/ngx_log_if-master \

--add-module=/tmp/soft/ngx_devel_kit-0.3.0 \

--add-module=/tmp/soft/lua-nginx-module-0.10.5

make

5.备份原有的程序及增加链接

mv /app/local/nginx/sbin/nginx /app/local/nginx/sbin/nginx.0729

cp ./objs/nginx /app/local/nginx/sbin/

ln -s /usr/local/lib/libpcre.so.1 /lib64/libpcre.so.1

ln -s /usr/local/luajit/lib/libluajit-5.1.so.2 /lib64/libluajit-5.1.so.2

6.查看模块

# /app/local/nginx/sbin/nginx -V

nginx version: nginx/1.9.14

built by gcc 4.4.7 20120313 (Red Hat 4.4.7-17) (GCC)

built with OpenSSL 1.0.2 22 Jan 2015

TLS SNI support enabled

configure arguments: --prefix=/app/local/nginx --pid-path=/app/local/nginx --user=nginx --group=nginx --with-threads --with-file-aio --with-http_ssl_module --with-http_v2_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_perl_module --with-mail --with-http_gzip_static_module --with-http_auth_request_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module --with-zlib=/tmp/soft/zlib-1.2.8 --with-stream --with-stream_ssl_module --with-pcre=/tmp/soft/pcre-8.37 --with-openssl=/tmp/soft/openssl-1.0.2 --with-libatomic --add-module=/tmp/soft/ngx_log_if-master --add-module=/tmp/soft/ngx_devel_kit-0.3.0 --add-module=/tmp/soft/lua-nginx-module-0.10.5

7.nginx 修改为json格式

修改很简单,如下:

log_format ng_json '{'

'"http_cdn_src_ip":"$http_cdn_src_ip",'

'"time_local": "$time_local",'

'"request":"$request",'

'"status":"$status",'

'"body_bytes_sent":"$body_bytes_sent",'

'"request_body":"$request_body",'

'"content_length":"$content_length",'

'"http_referer":"$http_referer",'

'"http_user_agent":"$http_user_agent",'

'"http_x_forwarded_for":"$http_x_forwarded_for",'

'"remote_addr":"$remote_addr",'

'"upstream_response_time":"$upstream_response_time",'

'"request_time":"$request_time",'

'"http_x_trace_code":"$http_x_trace_code"}

}';

查看生成的json:

{

"http_cdn_src_ip": "-",

"time_local": "29/Jul/2016:03:01:02 +0800",

"request": "GET /q.gif?platform=pc&category=player&action=bufferEmpty&t=1469732461170&loc=/star/3459038 HTTP/1.1",

"status": "200",

"body_bytes_sent": "43",

"request_body": "-",

"content_length": "-",

"http_referer": "http://www.ckl.com/ckl/3459038",

"http_user_agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 BIDUBrowser/7.5 Safari/537.36",

"http_x_forwarded_for": "-",

"remote_addr": "117.174.247.112",

"upstream_response_time": "-",

"request_time": "0.000",

"http_x_trace_code": "-"

}

发现,request 字段依然不是json格式,如何修改,nginx测试无法实现(自己无法实现)所以修改了,增加lua脚本,不通过nginx记录日志

而是直接使用lua来记录,lua脚本如下:

#cd /app/local/nginx/lua/

#vim parse.lua

local args = {}

args = ngx.req.get_uri_args()

local v_prev = ""

local sp = "\""

for key,val in pairs(args) do

if key == nil or val == nil then

else

v_prev = v_prev .. sp ..  key .. sp .. ":" .. sp .. val .. sp .. ","

end

end

function isnil(value)

if value == nil then

value = "-"

end

return value

end

local logContent = ""

if v_prev ~= nil then

local http_cdn_src_ip = isnil(ngx.var.http_cdn_src_ip)

local time_local = isnil(ngx.var.time_local)

local status = isnil(ngx.var.status)

local body_bytes_sent = isnil(ngx.var.body_bytes_sent)

local request_body = isnil(ngx.var.request_body)

local content_length = isnil(ngx.var.content_length)

local http_referer = isnil(ngx.var.http_referer)

local http_user_agent = isnil(ngx.var.http_user_agent)

local http_x_forwarded_for = isnil(ngx.var.http_x_forwarded_for)

local remote_addr = isnil(ngx.var.remote_addr)

local upstream_response_time = isnil(ngx.var.upstream_response_time)

local request_time = isnil(ngx.var.request_time)

local http_x_trace_code = isnil(ngx.var.http_x_trace_code)

logContent = "{\"http_cdn_src_ip\":" .. sp .. http_cdn_src_ip .. sp .. ",\"time_local\":" .. sp .. time_local .. sp  .. ",\"request\":" ..  "{" .. string.sub(v_prev,1,#v_prev-1) ..  "}" .. ",\"status\":" .. sp .. status .. sp .. ",\"body_bytes_sent\":" .. sp .. body_bytes_sent .. sp .. ",\"request_body\":" .. sp .. request_body .. sp .. ",\"content_length\":" .. sp .. content_length .. sp .. ",\"http_referer\":" .. sp .. http_referer .. sp .. ",\"http_user_agent\":" .. sp .. http_user_agent .. sp .. ",\"http_x_forwarded_for\":" .. sp .. http_x_forwarded_for .. sp .. ",\"remote_addr\":" .. sp .. remote_addr .. sp .. ",\"upstream_response_time\":" .. sp .. upstream_response_time .. sp .. ",\"request_time\":" .. sp .. request_time .. sp .. ",\"http_x_trace_code\":" .. sp .. http_x_trace_code .. sp .. "}"

local file = io.open("/app/data/log/nginx/ckl_access.log","a")

local hc = "\n"

file:write(logContent)

file:write(hc)

file:close()

end

ngx.status = 200

ngx.exit(0)

修改nginx配置:

增加如下:

location ~ /ckl.gif {

set $logContent "";

default_type text/plain;

content_by_lua_file "/app/local/nginx/lua/parse.lua";

}

重启nginx 生效,这个必须重启

/etc/init.d/nginx restart

查看新的json

{

"http_cdn_src_ip": "-",

"time_local": "01/Aug/2016:02:01:02 +0800",

"request": {

"t": "1469988090580",

"category": "player",

"action": "bufferEmpty",

"platform": "pc",

"loc": "/v/2955653"

},

"status": "000",

"body_bytes_sent": "0",

"request_body": "-",

"content_length": "-",

"http_referer": "http://www.ckl.com/v/2955653",

"http_user_agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36",

"http_x_forwarded_for": "-",

"remote_addr": "221.226.105.101",

"upstream_response_time": "-",

"request_time": "0.000",

"http_x_trace_code": "-"

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/306012.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

我的2020年终总结:新的角色,新的开始

【年终总结】| 作者/Edison Zhou又到了一年一度的年终盘点时刻,熟悉我的朋友应该都知道,这个时候我都会写一篇推文盘点一下这一年来的得失。1也谈2020关键事件回顾(1)扯证了,结婚了要说2020年我个人的最大里程碑&#…

docker es持久化_使用docker数据卷对容器数据持久化

volume是用于对Docker容器生成和使用的数据持久化的首选机制。如果您的容器生成非持久状态数据,请考虑使用 tmpfs挂载以避免将数据永久存储在任何地方,并通过避免写入容器的可写层来提高容器的性能。默认容器的数据存储在这里我们在容器中创建一些模拟的…

求职信计算机工程师英语作文,开发工程师英文求职信范文

开发工程师英文求职信范文respected leaders:hello:first salute you sincere thanks, thank you for taking the time to consult the of my application letter!i am aptech a student, now already graduated from junior year. major in.net direction, and ismitted to be…

微信适配国产操作系统:原生支持 Linux

喜欢就关注我们吧!据 ZOL 报道,统信软件官方近日宣布上线适配统信 UOS 的微信桌面客户端,并称该微信版本为原生支持 Linux 的版本,同时支持龙芯、鲲鹏、麒麟等国产 CPU。据悉,统信 UOS 版的微信桌面客户端由腾讯公司研…

oracle拆分分区语法详解大全_Oracle hash的分区方法详解

hash的原理虽然简单,但是它在数据库中可以说是无处不在。其中hash partition是hash在数据库中一个简单的应用,虽然它没有range partition那么常用,但是我们在做数据库水平拆分时,其实就是利用了hash partition的原理,利…

计算机专业的吸引力,计算机专业文献翻译-面向对象编程具有多方面的吸引力.doc...

英文文摘Why has object-oriented programming had such a sweeping impact on the software development communityObject-oriented programming appeals at multiple levels. For managers, it promises faster and cheaper development and maintenance. For analysts and d…

ML.NET生成器带来了许多错误修复和增强功能以及新功能

ML.NET是一个开源的跨平台机器学习框架,适合 .NET 开发人员。它允许将机器学习集成到 .NET 应用中,而无需离开 .NET 生态系统,甚至拥有 ML 或数据科学背景。ML.NET工具(Visual Studio 中的 UI 模型生成器和跨平台 ML.NET CLI&…

yolo算法的优缺点分析_yolo算法介绍

yolo算法介绍(2020-06-06 16:49:28)把Yolo模型搞清楚后不得不再次为人类的智慧感慨,一个巧妙的模型。要想理解Yolo我们先要搞清楚Yolo到底要解决一个什么问题,解决这个问题必须做哪些事情。Yolo属于多目标检测,因此需要解决两个问题&#xff…

Flash 生命终止,HTML5能否完美替代?

Adobe 对 Flash Player 的支持计划在今天,也就是 2020 年 12 月 31 日终止。Windows 计算机上最新版本的 Flash Player 已经开始弹出生命周期终止提示窗口。提示中指出,为了保护用户系统,Adobe 将在 2021 年 1 月 12 日开始禁止 Flash 内容在…

14考研计算机考前,计算机专业考研考前终极预测试题.docx

PAGE \* MERGEFORMAT #PAGE \* MERGEFORMAT #真理惟一可靠的标准就是永远自相符合计算机专业考研考前终极预测试题一?p单项选择题:1~40小题,每小题2分,共80分。在每小题给出的四个 选项中,请选出一项最符合题目要求的。1若某线性…

typora公式zuo对齐_Markdown编辑神器-Typora

Markdown For Typora Overview Markdown is created by Daring Fireball, the original guideline is here. Its syntax, however, varies between different parsers or editors. Typora is using [GitHub Flavored Markdown][GFM]. 注:Markdown语法与知乎不能完全兼容,显示…

使用 ML.NET 识别乐高颜色块

每一个乐高迷都拥有很多的颜色块,需要进行排序和按类型分拣,按照《Organizing your LEGO Bricks》或许有所帮助,但这不是一个简单的任务,因为有很多颜色块有非常微妙的差异。如果换作一个典型的程序员可以做什么来解决这个问题呢&…

维修计算机机房管理员职责,机房管理员岗位职责

机房管理员在现代教育技术中心主任的领导下,负责学生机房的规划建设和日常管理工作。具体履行以下职责:一、树立一切以教学为中心的服务意识,加强与教师之间的联系,注重业务学习,不断提高业务技能。二、掌握计算机操作…

ccs加载out文件_类加载流程、类加载机制及自定义类加载器详解

原文:juejin.im/post/5cffa528e51d4556da53d091一、引言当程序使用某个类时,如果该类还未被加载到内存中,则JVM会通过加载、链接、初始化三个步骤对该类进行类加载。二、类的加载、链接、初始化1、加载类加载指的是将类的class文件读入内存&a…

写给自己,2020的年终总结

大概从2017年起,每年在博客园写一篇博客回顾自己过去的一年已经成为我的一种习惯,今年也同样毫不例外。不过与往年相比,总归还是受拖延症的影响,在公历年即将过去才开始动手敲下第一行文字。如果要给自己的2020年年终总结列一个篇…

2021福建计算机会考操作题,2021年福建省信息技术会考笔试试题答案.doc

.6信息技术基础(必修)选择题(共50题,每题1分,每题只有一个正确答案)1.下列相关信息叙述,不正确是A.信息无处不在,但并不一定全部是真实B.信息能够被存放和传输C.信息价值完全取决于信…

unity中单位是米还是厘米_【一步数学】小学数学单位换算公式大全及专项训练...

重量单位换算1吨1000千克 1吨1000 000克吨:吨是重量单位,公制一吨等于1000公斤:计算船只容积的单位,一吨等于2.83立方米(合100立方英尺)。1千克1000克 500克1斤千克:克,(符号kg或㎏)…

起点低,是彪悍的最好证明!

阅读本文大概需要4分钟。一个读者的问题:洋哥,我老家是农村的,只考上了专科,毕业后北漂两年月薪才7000,每天都会很焦虑,想努力但想到自己的过去,又怀疑努力是否有用。和这个读者聊了很久&#x…

量子计算机与新型传感器,新型量子传感器为超导量子计算机发展开辟了新路径...

莫斯科国立科技大学(NUSTMISIS)、俄罗斯量子中心(RQC)、以及德国卡尔斯鲁厄理工学院(KIT)的一支联合研究团队,已经在量子优势研究方面取得了重大的进展。由发表在《npj量子信息》期刊上的研究论文可知,其打造的一款量子传感器,为量子比特中两…

二分法查找是基于有序_201,查找顺序查找

查找算法中顺序查找算是最简单的了,无论是有序的还是无序的都可以,也不需要排序,只需要一个个对比即可,但其实效率很低。我们来看下代码1public static int search1(int[] a, int key) {2 for (int i 0, length a.length; i …