summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua
blob: 4fde243ca9d48d08655fffc1f01f8576366db493 (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
-- Copyright 2018 Chizhong Jin <pjincz@gmail.com>
-- Licensed to the public under the BSD 3-clause license

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

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

function rrdargs( graph, plugin, plugin_instance, dtype )

	return {
		title = "%H: cUrl Response Time for #%pi",
		y_min = "0",
		alt_autoscale_max = true,
		vlabel = "Response Time",
		number_format = "%5.1lf%Ss",
		data = {
			types = { "response_time" },
			options = {
				response_time = {
					title = ""
				}
			}
		}
	}
end