Merge pull request #2196 from TDT-AG/pr/20181001-luci-theme-material
[project/luci.git] / applications / luci-app-statistics / luasrc / statistics / rrdtool / definitions / curl.lua
1 -- Copyright 2018 Chizhong Jin <pjincz@gmail.com>
2 -- Licensed to the public under the BSD 3-clause license
3
4 module("luci.statistics.rrdtool.definitions.curl", package.seeall)
5
6 function rrdargs( graph, plugin, plugin_instance, dtype )
7 return {
8 title = "%H: cUrl Response Time for #%pi",
9 y_min = "0",
10 alt_autoscale_max = true,
11 vlabel = "Response Time",
12 number_format = "%5.1lf%Ss",
13 data = {
14 types = { "response_time" },
15 options = {
16 response_time = {
17 title = ""
18 }
19 }
20 }
21 }
22 end