123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- #!/usr/bin/lua
- --[[
- Luci statistics - collectd configuration generator
- (c) 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- $Id$
- ]]--
- require("luci.model.uci")
- require("luci.sys.iptparser")
- require("luci.util")
- local ipt = luci.sys.iptparser.IptParser()
- local uci = luci.model.uci.cursor()
- local sections = uci:get_all( "luci_statistics" )
- function print(...)
- nixio.stdout:write(...)
- nixio.stdout:write("\n")
- end
- function section( plugin )
- local config = sections[ "collectd_" .. plugin ] or sections["collectd"]
- if type(config) == "table" and ( plugin == "collectd" or config.enable == "1" ) then
- local params = ""
- if type( plugins[plugin] ) == "function" then
- params = plugins[plugin]( config )
- else
- params = config_generic( config, plugins[plugin][1], plugins[plugin][2], plugins[plugin][3], plugin == "collectd" )
- end
- if plugin ~= "collectd" then
- print( "LoadPlugin " .. plugin )
- if params:len() > 0 then
- print( "<Plugin " .. plugin .. ">\n" .. params .. "</Plugin>\n" )
- else
- print( "" )
- end
- else
- print( params .. "\n" )
- end
- end
- end
- function config_generic( c, singles, bools, lists, nopad )
- local str = ""
- if type(c) == "table" then
- if type(singles) == "table" then
- for i, key in ipairs( singles ) do
- if preprocess[key] then
- c[key] = preprocess[key](c[key])
- end
- str = str .. _string( c[key], key, nopad )
- end
- end
- if type(bools) == "table" then
- for i, key in ipairs( bools ) do
- if preprocess[key] then
- c[key] = preprocess[key](c[key])
- end
- str = str .. _bool( c[key], key, nopad )
- end
- end
- if type(lists) == "table" then
- str = str .. _list_expand( c, lists, nopad )
- end
- end
- return str
- end
- function config_exec( c )
- local str = ""
- for s in pairs(sections) do
- for key, type in pairs({ Exec="collectd_exec_input", NotificationExec="collectd_exec_notify" }) do
- if sections[s][".type"] == type then
- cmd = sections[s].cmdline
- if cmd then
- cmd = cmd:gsub("^%s+", ""):gsub("%s+$", "")
- user = sections[s].cmduser or "nobody"
- group = sections[s].cmdgroup
- str = str .. "\t" .. key .. ' "' ..
- user .. ( group and ":" .. group or "" ) .. '" "' ..
- cmd:gsub('%s+', '" "') .. '"\n'
- end
- end
- end
- end
- return str
- end
- function config_iptables( c )
- local str = ""
- for s in pairs(sections) do
- if sections[s][".type"] == "collectd_iptables_match" then
- search = { }
- for i, k in ipairs( {
- "table", "chain", "target", "protocol", "source", "destination",
- "inputif", "outputif", "options"
- } ) do
- v = sections[s][k]
- if type(v) == "string" then
- if k == "options" then v = luci.util.split( v, "%s+", nil, true ) end
- search[k] = v
- end
- end
- for i, rule in ipairs( ipt:find( search ) ) do
- name = sections[s].name:gsub( "%s+", "_" )
- if i > 1 then name = name .. "_(" .. i .. ")" end
- str = str .. "\tChain " .. rule.table .. " " .. rule.chain .. " " .. rule.index .. ' "' .. name .. "\"\n"
- end
- end
- end
- return str
- end
- function config_network( c )
- local str = ""
- for s in pairs(sections) do
- for key, type in pairs({ Listen="collectd_network_listen", Server="collectd_network_server" }) do
- if sections[s][".type"] == type then
- host = sections[s].host
- port = sections[s].port
- if host then
- if port then
- str = str .. "\t" .. key .. " \"" .. host .. "\" \"" .. port .. "\"\n"
- else
- str = str .. "\t" .. key .. " \"" .. host .. "\"\n"
- end
- end
- end
- end
- end
- return str .. _string( c["TimeToLive"], "TimeToLive" )
- .. _string( c["CacheFlush"], "CacheFlush" )
- .. _bool( c["Forward"], "Forward" )
- end
- function _list_expand( c, l, nopad )
- local str = ""
- for i, n in ipairs(l) do
- if c[n] then
- if preprocess[n] then
- c[n] = preprocess[n](c[n])
- end
- if n:find("(%w+)ses") then
- k = n:gsub("(%w+)ses$", "%1s")
- else
- k = n:gsub("(%w+)s$", "%1")
- end
- str = str .. _expand( c[n], k, nopad )
- end
- end
- return str
- end
- function _expand( s, n, nopad )
- local str = ""
- if type(s) == "string" then
- for i, v in ipairs( luci.util.split( s, "%s+", nil, true ) ) do
- str = str .. _string( v, n, nopad )
- end
- elseif type(s) == "table" then
- for i, v in ipairs(s) do
- str = str .. _string( v, n, nopad )
- end
- end
- return str
- end
- function _bool( s, n, nopad )
- local str = ""
- local pad = ""
- if not nopad then pad = "\t" end
- if s and s == "1" then
- str = pad .. n .. " true"
- else
- str = pad .. n .. " false"
- end
- return str .. "\n"
- end
- function _string( s, n, nopad )
- local str = ""
- local pad = ""
- if not nopad then pad = "\t" end
- if s then
- if s:find("[^%d]") or n == "Port" then
- if not s:find("[^%w]") and n ~= "Port" then
- str = pad .. n .. " " .. luci.util.trim(s)
- else
- str = pad .. n .. ' "' .. luci.util.trim(s) .. '"'
- end
- else
- str = pad .. n .. " " .. luci.util.trim(s)
- end
- str = str .. "\n"
- end
- return str
- end
- plugins = {
- apcups = {
- { "Host", "Port" },
- { },
- { }
- },
- collectd = {
- { "BaseDir", "Include", "PIDFile", "PluginDir", "TypesDB", "Interval", "ReadThreads", "Hostname" },
- { },
- { }
- },
- conntrack = {
- { },
- { },
- { }
- },
- cpu = {
- { },
- { },
- { }
- },
- cpufreq = {
- { },
- { },
- { }
- },
- contextswitch = {
- { },
- { },
- { }
- },
- csv = {
- { "DataDir" },
- { "StoreRates" },
- { }
- },
- df = {
- { },
- { "IgnoreSelected" },
- { "Devices", "MountPoints", "FSTypes" }
- },
- disk = {
- { },
- { "IgnoreSelected" },
- { "Disks" }
- },
- dns = {
- { },
- { },
- { "Interfaces", "IgnoreSources" }
- },
- email = {
- { "SocketFile", "SocketGroup", "SocketPerms", "MaxConns" },
- { },
- { }
- },
- entropy = {
- { },
- { },
- { }
- },
- exec = config_exec,
- interface = {
- { },
- { "IgnoreSelected" },
- { "Interfaces" }
- },
- iptables = config_iptables,
- irq = {
- { },
- { "IgnoreSelected" },
- { "Irqs" }
- },
- iwinfo = {
- { },
- { "IgnoreSelected" },
- { "Interfaces" }
- },
- load = {
- { },
- { },
- { }
- },
- logfile = {
- { "LogLevel", "File" },
- { "Timestamp" },
- { }
- },
- memory = {
- { },
- { },
- { }
- },
- netlink = {
- { },
- { "IgnoreSelected" },
- { "Interfaces", "VerboseInterfaces", "QDiscs", "Classes", "Filters" }
- },
- network = config_network,
- nut = {
- { "UPS" },
- { },
- { }
- },
- olsrd = {
- { "Host", "Port", "CollectLinks","CollectRoutes","CollectTopology"},
- { },
- { }
- },
- openvpn = {
- { },
- { "CollectIndividualUsers", "CollectUserCount", "CollectCompression", "ImprovedNamingSchema" },
- { "StatusFile" }
- },
- ping = {
- { "TTL", "Interval" },
- { },
- { "Hosts" }
- },
- processes = {
- { },
- { },
- { "Processes" }
- },
- rrdtool = {
- { "DataDir", "StepSize", "HeartBeat", "RRARows", "XFF", "CacheFlush", "CacheTimeout" },
- { "RRASingle" },
- { "RRATimespans" }
- },
- sensors = {
- { },
- { "IgnoreSelected" },
- { "Sensor" }
- },
- splash_leases = {
- { },
- { },
- { }
- },
- tcpconns = {
- { },
- { "ListeningPorts" },
- { "LocalPorts", "RemotePorts" }
- },
- thermal = {
- { },
- { "IgnoreSelected" },
- { "Device" }
- },
- unixsock = {
- { "SocketFile", "SocketGroup", "SocketPerms" },
- { },
- { }
- },
- uptime = {
- { },
- { },
- { }
- },
- wireless = {
- { },
- { },
- { }
- },
- }
- preprocess = {
- RRATimespans = function(val)
- local rv = { }
- for time in val:gmatch("[^%s]+") do
- table.insert( rv, luci.util.parse_units(time) )
- end
- return table.concat(rv, " ")
- end
- }
- section("collectd")
- section("logfile")
- for plugin in pairs(plugins) do
- if (plugin ~= "collectd") and (plugin ~= "logfile") then
- section( plugin )
- end
- end
|