mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-15 09:21:26 +08:00
71 lines
1.0 KiB
Lua
71 lines
1.0 KiB
Lua
local json_decode = require("cjson").decode
|
|
|
|
local _M = {}
|
|
|
|
|
|
function _M.hello()
|
|
ngx.say("hello world")
|
|
end
|
|
|
|
function _M.hello1()
|
|
ngx.say("hello1 world")
|
|
end
|
|
|
|
|
|
function _M.server_port()
|
|
ngx.print(ngx.var.server_port)
|
|
end
|
|
|
|
|
|
function _M.limit_conn()
|
|
ngx.sleep(0.3)
|
|
ngx.say("hello world")
|
|
end
|
|
|
|
|
|
function _M.status()
|
|
ngx.say("ok")
|
|
end
|
|
|
|
function _M.sleep1()
|
|
ngx.sleep(1)
|
|
ngx.say("ok")
|
|
end
|
|
|
|
|
|
function _M.opentracing()
|
|
ngx.say("opentracing")
|
|
end
|
|
|
|
|
|
function _M.mock_zipkin()
|
|
ngx.req.read_body()
|
|
local data = ngx.req.get_body_data()
|
|
local spans = json_decode(data)
|
|
if #spans < 5 then
|
|
ngx.exit(400)
|
|
end
|
|
|
|
for _, span in pairs(spans) do
|
|
if string.sub(span.name, 1, 6) ~= 'apisix' then
|
|
ngx.exit(400)
|
|
end
|
|
if not span.traceId then
|
|
ngx.exit(400)
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
function _M.go()
|
|
local action = string.sub(ngx.var.uri, 2)
|
|
if not _M[action] then
|
|
return ngx.exit(404)
|
|
end
|
|
|
|
return _M[action]()
|
|
end
|
|
|
|
|
|
return _M
|