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