mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.http: track time of request for debug/stats purposes
This commit is contained in:
parent
67a812d2f2
commit
3de8b69f1c
1 changed files with 2 additions and 0 deletions
|
@ -24,6 +24,7 @@ local t_insert, t_concat = table.insert, table.concat;
|
|||
local pairs = pairs;
|
||||
local tonumber, tostring, traceback =
|
||||
tonumber, tostring, debug.traceback;
|
||||
local os_time = os.time;
|
||||
local xpcall = require "util.xpcall".xpcall;
|
||||
local error = error
|
||||
|
||||
|
@ -221,6 +222,7 @@ local function request(self, u, ex, callback)
|
|||
|
||||
req.url = u;
|
||||
req.http = self;
|
||||
req.time = os_time();
|
||||
|
||||
if not req.path then
|
||||
req.path = "/";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue