ntopng/scripts/lua/rest/v2/get/system/health/redis.lua
2024-01-12 11:44:18 +01:00

13 lines
313 B
Lua

--
-- (C) 2019-24 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
local redis_api = require "redis_api"
local rest_utils = require("rest_utils")
local stats = redis_api.getStats()
rest_utils.answer(rest_utils.consts.success.ok, stats)