summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua
blob: b8d11c0759321ed3170e75f60751d5e03a146ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
-- Licensed to the public under the Apache License 2.0.

module("luci.statistics.rrdtool.definitions.ping", package.seeall)

function item()
	return luci.i18n.translate("Ping")
end

function rrdargs( graph, plugin, plugin_instance, dtype )

	local ping = {
		title = "%H: ICMP Round Trip Time",
		vlabel = "ms",
		number_format = "%5.1lf ms",
		data = {
			sources = {
				ping = {
					"value"
				}
			},
			options = {
				ping__value = {
					noarea = true,
					overlay = true,
					title = "%di"
				}
			}
		}
	}

	local droprate = {
		title = "%H: ICMP Drop Rate",
		vlabel = "%",
		number_format = "%5.2lf %%",
		data = {
			types   = {
				"ping_droprate"
			},
			options = {
				ping_droprate = {
					noarea = true,
					overlay = true,
					title = "%di",
					transform_rpn = "100,*"
				}
			}
		}
	}

	local stddev = {
		title = "%H: ICMP Standard Deviation",
		vlabel = "ms",
		number_format = "%5.1lf ms",
		data = {
			types   = {
				"ping_stddev"
			},
			options = {
				ping_stddev = {
					noarea = true,
					overlay = true,
					title = "%di"
				}
			}
		}
	}

	return { ping, droprate, stddev }
end