mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 01:10:10 +00:00
11 lines
226 B
Lua
11 lines
226 B
Lua
return {
|
|
label = "Redis",
|
|
script = "redis_stats.lua",
|
|
sort_order = 1700,
|
|
|
|
is_shown = function()
|
|
local user_scripts = require("user_scripts")
|
|
|
|
return(user_scripts.isSystemScriptEnabled("redis_monitor"))
|
|
end
|
|
}
|