mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 09:20:10 +00:00
add a test page containing datetimepicker range
This commit is contained in:
parent
d2271c884e
commit
59725e0355
10 changed files with 194 additions and 3 deletions
32
scripts/lua/rest/v1/get/time/data.lua
Normal file
32
scripts/lua/rest/v1/get/time/data.lua
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
--
|
||||
-- (C) 2013-21 - ntop.org
|
||||
--
|
||||
|
||||
local dirs = ntop.getDirs()
|
||||
|
||||
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
||||
|
||||
require "lua_utils"
|
||||
local rest_utils = require("rest_utils")
|
||||
|
||||
local begin_epoch = tonumber(_GET["begin_epoch"])
|
||||
local end_epoch = tonumber(_GET["end_epoch"])
|
||||
local num_records = tonumber(_GET["totalRows"]) or 24
|
||||
|
||||
local curr = begin_epoch
|
||||
local records = {}
|
||||
|
||||
-- 1 hour is 60*60=3600
|
||||
|
||||
for i = 1, num_records, 1 do
|
||||
|
||||
if (curr < end_epoch) then
|
||||
records[#records+1] = {index = i, date = os.date("%c", curr)}
|
||||
curr = curr + 3600
|
||||
else
|
||||
break
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
rest_utils.answer(rest_utils.consts.success.ok, records)
|
||||
Loading…
Add table
Add a link
Reference in a new issue