root/luci/trunk/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/ping/ping.lua @ 6809

Revision 6809, 0.6 KB (checked in by jow, 2 years ago)

po: sync radvd translations

  • Property svn:keywords set to Id
Line 
1--[[
2
3Luci statistics - ping plugin diagram definition
4(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
5
6Licensed under the Apache License, Version 2.0 (the "License");
7you may not use this file except in compliance with the License.
8You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12$Id$
13
14]]--
15
16module("luci.statistics.rrdtool.definitions.ping.ping", package.seeall)
17
18function rrdargs( graph, plugin, plugin_instance, dtype )
19
20    return {
21        data = {
22            sources = {
23                ping = { "ping" }
24            },
25
26            options = {
27                ping__ping = {
28                    overlay = true,
29                    noarea  = true
30                }
31            }
32        }
33    }
34end
Note: See TracBrowser for help on using the browser.