aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apt-panopticon-report-email-web.lua
diff options
context:
space:
mode:
authoronefang2019-12-23 13:08:42 +1000
committeronefang2019-12-23 13:08:42 +1000
commit51f13c53b40edcc643cc611899954d2fcfab72ad (patch)
tree8e4f5fe5f04a0e770a4f3d73daa2f9bce76f8940 /apt-panopticon-report-email-web.lua
parentPromote verbosity to become an externally visible entity. (diff)
downloadapt-panopticon-51f13c53b40edcc643cc611899954d2fcfab72ad.zip
apt-panopticon-51f13c53b40edcc643cc611899954d2fcfab72ad.tar.gz
apt-panopticon-51f13c53b40edcc643cc611899954d2fcfab72ad.tar.bz2
apt-panopticon-51f13c53b40edcc643cc611899954d2fcfab72ad.tar.xz
Speed RRD is now it's own thing, not aseparate one per protocol.
Diffstat (limited to 'apt-panopticon-report-email-web.lua')
-rwxr-xr-xapt-panopticon-report-email-web.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/apt-panopticon-report-email-web.lua b/apt-panopticon-report-email-web.lua
index c52b6c0..5115910 100755
--- a/apt-panopticon-report-email-web.lua
+++ b/apt-panopticon-report-email-web.lua
@@ -282,10 +282,10 @@ for k, v in APT.orderedPairs(mirrors) do
282 local c = colours[count] 282 local c = colours[count]
283 local name = string.format('%32s', k) 283 local name = string.format('%32s', k)
284 if 'pkgmaster.devuan.org' == k then c = 'ffffff' end 284 if 'pkgmaster.devuan.org' == k then c = 'ffffff' end
285 table.insert(g, 'DEF:speedn' .. count .. '=rrd/' .. k .. '/HTTP/Speed.rrd:max:MIN') 285 table.insert(g, 'DEF:speedn' .. count .. '=rrd/' .. k .. '/Speed/Speed.rrd:max:MIN')
286 table.insert(g, 'DEF:speedx' .. count .. '=rrd/' .. k .. '/HTTP/Speed.rrd:max:MAX') 286 table.insert(g, 'DEF:speedx' .. count .. '=rrd/' .. k .. '/Speed/Speed.rrd:max:MAX')
287 table.insert(g, 'DEF:speeda' .. count .. '=rrd/' .. k .. '/HTTP/Speed.rrd:max:AVERAGE') 287 table.insert(g, 'DEF:speeda' .. count .. '=rrd/' .. k .. '/Speed/Speed.rrd:max:AVERAGE')
288 table.insert(g, 'DEF:speedl' .. count .. '=rrd/' .. k .. '/HTTP/Speed.rrd:max:LAST') 288 table.insert(g, 'DEF:speedl' .. count .. '=rrd/' .. k .. '/Speed/Speed.rrd:max:LAST')
289 table.insert(g, 'VDEF:vspeedn' .. count .. '=speedn' .. count .. ',AVERAGE') 289 table.insert(g, 'VDEF:vspeedn' .. count .. '=speedn' .. count .. ',AVERAGE')
290 table.insert(g, 'VDEF:vspeedx' .. count .. '=speedx' .. count .. ',AVERAGE') 290 table.insert(g, 'VDEF:vspeedx' .. count .. '=speedx' .. count .. ',AVERAGE')
291 table.insert(g, 'VDEF:vspeeda' .. count .. '=speeda' .. count .. ',AVERAGE') 291 table.insert(g, 'VDEF:vspeeda' .. count .. '=speeda' .. count .. ',AVERAGE')