Mercurial > code > home > repos > homeauto
comparison service/dhcpleases/dhcpleases.py @ 722:a93fbf0d0daa
dep updates; graph url renames; and other build updates
Ignore-this: 4603ef3d8db650a13e543dad8580ade8
author | drewp@bigasterisk.com |
---|---|
date | Wed, 05 Feb 2020 00:23:06 -0800 |
parents | f372e9d358d2 |
children | b87b6e9cedb2 |
comparison
equal
deleted
inserted
replaced
721:4fa5c6a61282 | 722:a93fbf0d0daa |
---|---|
85 int(arg['--port']), | 85 int(arg['--port']), |
86 cyclone.web.Application( | 86 cyclone.web.Application( |
87 [ | 87 [ |
88 (r"/()", cyclone.web.StaticFileHandler, | 88 (r"/()", cyclone.web.StaticFileHandler, |
89 {"path": ".", "default_filename": "index.html"}), | 89 {"path": ".", "default_filename": "index.html"}), |
90 (r'/graph', CycloneGraphHandler, {'masterGraph': masterGraph}), | 90 (r'/graph/dhcpLeases', CycloneGraphHandler, {'masterGraph': masterGraph}), |
91 (r'/graph/events', CycloneGraphEventsHandler, {'masterGraph': masterGraph}), | 91 (r'/graph/dhcpLeases/events', CycloneGraphEventsHandler, {'masterGraph': masterGraph}), |
92 (r'/stats/(.*)', StatsHandler, {'serverName': 'dhcpleases'}), | 92 (r'/stats/(.*)', StatsHandler, {'serverName': 'dhcpleases'}), |
93 ], masterGraph=masterGraph | 93 ], masterGraph=masterGraph |
94 )) | 94 )) |
95 reactor.run() | 95 reactor.run() |