diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2018-10-13 22:02:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-13 22:02:42 +0300 |
commit | 703cd248680d9fd5bae647487ce702ec8d86410f (patch) | |
tree | 9213c98821728adad6798649fa39cb0f88f7a893 /applications/luci-app-statistics/luasrc/controller | |
parent | 7eff2de5d4651bc64d0c35e73709a12f788ea04a (diff) | |
parent | 2d1830422b90d3dadc07b2d1ee05b0dc8ef7c583 (diff) |
Merge pull request #2209 from jinchizhong/luci-app-statistics-add-curl
luci-app-statistics: add support for cUrl
Diffstat (limited to 'applications/luci-app-statistics/luasrc/controller')
-rw-r--r-- | applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua b/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua index de7bdbadfe..9a3850d683 100644 --- a/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua +++ b/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua @@ -29,6 +29,7 @@ function index() cpu = _("Processor"), cpufreq = _("CPU Frequency"), csv = _("CSV Output"), + curl = _("cUrl"), df = _("Disk Space Usage"), disk = _("Disk Usage"), dns = _("DNS"), @@ -63,7 +64,7 @@ function index() general = { "apcups", "contextswitch", "cpu", "cpufreq", "df", "disk", "email", "entropy", "exec", "irq", "load", "memory", "nut", "processes", "sensors", "thermal", "uptime" }, - network = { "conntrack", "dns", "interface", "iptables", + network = { "conntrack", "curl", "dns", "interface", "iptables", "netlink", "olsrd", "openvpn", "ping", "splash_leases", "tcpconns", "iwinfo" } } |