comparison adslstats.py @ 31:39bf6dec0753

Add 5 year graphs
author Daniel O'Connor <darius@dons.net.au>
date Sat, 14 Nov 2020 14:10:50 +1030
parents 08cddcdb0db3
children 1af6865189ce
comparison
equal deleted inserted replaced
30:08cddcdb0db3 31:39bf6dec0753
363 '--height', '256', 363 '--height', '256',
364 '--start', 'end - 7d', 364 '--start', 'end - 7d',
365 '--end', 'now', 365 '--end', 'now',
366 *linkargs) 366 *linkargs)
367 367
368 rrdtool.graph("%s-daily-5y-link.svg" % (graphbasename),
369 '--width', '768',
370 '--height', '256',
371 '--start', 'end - 1825d',
372 '--end', 'now',
373 *linkargs)
374
368 rrdtool.graph("%s-daily-link.svg" % (graphbasename), 375 rrdtool.graph("%s-daily-link.svg" % (graphbasename),
369 '--width', '768', 376 '--width', '768',
370 '--height', '256', 377 '--height', '256',
371 '--start', 'end - 365d', 378 '--start', 'end - 365d',
372 '--end', 'now', 379 '--end', 'now',
382 389
383 rrdtool.graph("%s-daily-signal.svg" % (graphbasename), 390 rrdtool.graph("%s-daily-signal.svg" % (graphbasename),
384 '--width', '768', 391 '--width', '768',
385 '--height', '256', 392 '--height', '256',
386 '--start', 'end - 365d', 393 '--start', 'end - 365d',
394 '--end', 'now',
395 *signalargs)
396
397 rrdtool.graph("%s-daily-5y-signal.svg" % (graphbasename),
398 '--width', '768',
399 '--height', '256',
400 '--start', 'end - 1825d',
387 '--end', 'now', 401 '--end', 'now',
388 *signalargs) 402 *signalargs)
389 403
390 if __name__ == "__main__": 404 if __name__ == "__main__":
391 names = ['Noise Margin (up)', 'Noise Margin (down)', 'Attenuation (up)', 'Attenuation (down)'] 405 names = ['Noise Margin (up)', 'Noise Margin (down)', 'Attenuation (up)', 'Attenuation (down)']