Files
kong--kong/spec/fixtures/custom_plugins/kong/plugins/reports-api/handler.lua
T
2026-07-13 12:32:21 +08:00

16 lines
260 B
Lua

local ReportsApiHandler = {
PRIORITY = 1000,
VERSION = "1.0",
}
function ReportsApiHandler:preread()
local reports = require "kong.reports"
reports._sync_counter()
reports.send_ping()
ngx.print("ok")
ngx.exit(200)
end
return ReportsApiHandler