Globally reduce copyright headers
[project/luci.git] / applications / luci-app-statistics / luasrc / model / cbi / luci_statistics / cpu.lua
1 -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
2 -- Licensed to the public under the Apache License 2.0.
3
4 m = Map("luci_statistics",
5         translate("CPU Plugin Configuration"),
6         translate("The cpu plugin collects basic statistics about the processor usage."))
7
8 -- collectd_cpu config section
9 s = m:section( NamedSection, "collectd_cpu", "luci_statistics" )
10
11 -- collectd_cpu.enable
12 enable = s:option( Flag, "enable", translate("Enable this plugin") )
13 enable.default = 0
14
15 return m