summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua
blob: 6578291d8f5de4fb45805fb6e86c73bc51c5880a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
-- Licensed to the public under the Apache License 2.0.

m = Map("luci_statistics",
	translate("Load Plugin Configuration"),
	translate(
		"The load plugin collects statistics about the general system load."
	))

-- collectd_wireless config section
s = m:section( NamedSection, "collectd_load", "luci_statistics" )

-- collectd_wireless.enable
enable = s:option( Flag, "enable", translate("Enable this plugin") )
enable.default = 0

return m