diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-08 15:58:02 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-08 15:58:02 +0000 |
commit | f708455d3c2520318749f6155b728b36858e4c45 (patch) | |
tree | 25eb357118782b9e0d7da9d66a700c3a22b4482c /applications/luci-statistics/luasrc | |
parent | f1f031fba5a78f4271613c89de9a4cf63b009ba4 (diff) |
* luci/app/statistics: fix dns plugin diagram - proper graph model will follow later
Diffstat (limited to 'applications/luci-statistics/luasrc')
-rw-r--r-- | applications/luci-statistics/luasrc/statistics/rrdtool/definitions.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/applications/luci-statistics/luasrc/statistics/rrdtool/definitions.lua b/applications/luci-statistics/luasrc/statistics/rrdtool/definitions.lua index e7938ad55..7e0b60534 100644 --- a/applications/luci-statistics/luasrc/statistics/rrdtool/definitions.lua +++ b/applications/luci-statistics/luasrc/statistics/rrdtool/definitions.lua @@ -297,14 +297,14 @@ function Instance.__init__( self, ... ) "LINE1:rsp_avg#" .. self.palette.FullGreen .. ":Responses", "GPRINT:rsp_avg:AVERAGE:%5.1lf%s Avg,", "GPRINT:rsp_max:MAX:%5.1lf%s Max,", - "GPRINT:rsp_avg:LAST:%5.1lf%s Last\\l", - "GPRINT:rsp_avg_sum:LAST:(ca. %5.1lf%sB Total)", + "GPRINT:rsp_avg:LAST:%5.1lf%s Last", + "GPRINT:rsp_avg_sum:LAST:(ca. %5.1lf%sB Total)\\l", "LINE1:qry_avg#" .. self.palette.FullBlue .. ":Queries ", - #"GPRINT:qry_min:MIN:%5.1lf %s Min,", + "GPRINT:qry_min:MIN:%5.1lf %s Min,", "GPRINT:qry_avg:AVERAGE:%5.1lf%s Avg,", "GPRINT:qry_max:MAX:%5.1lf%s Max,", - "GPRINT:qry_avg:LAST:%5.1lf%s Last\\l", - "GPRINT:qry_avg_sum:LAST:(ca. %5.1lf%sB Total)" + "GPRINT:qry_avg:LAST:%5.1lf%s Last", + "GPRINT:qry_avg_sum:LAST:(ca. %5.1lf%sB Total)\\l" }, dns_opcode = { |