diff options
author | Florian Eckert <fe@dev.tdt.de> | 2019-07-05 10:17:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-05 10:17:49 +0200 |
commit | 6122deefbd66d0ad5f929c968bd88000e2e49056 (patch) | |
tree | 4622d1e1864144232a41bd61eb2dca1f8a1c8bf2 /applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua | |
parent | 66c8ebfeffcffdcfcdf64888b7685dca26f82ff5 (diff) | |
parent | c1380ab36797dc4a9cba5a6aa738019452178d79 (diff) |
Merge pull request #2818 from mberndt123/mb/extensible-statistics
luci-app-statistics: more extensibility
Diffstat (limited to 'applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua')
-rw-r--r-- | applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua new file mode 100644 index 000000000..3b48d1644 --- /dev/null +++ b/applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua @@ -0,0 +1,9 @@ +return { + legend = { + { }, + { }, + { } + }, + label = _("Entropy"), + category = "general" +} |