diff --git a/modules/tinyweb/README.rst b/modules/tinyweb/README.rst index ee52da49940067462ade2442dae9eb7a26e3ba3e..36dee263778f94b48b446bd6bd666011051d553b 100644 --- a/modules/tinyweb/README.rst +++ b/modules/tinyweb/README.rst @@ -6,6 +6,7 @@ Web interface This module provides an embedded web interface for resolver. It plots current performance in real-time, including a feed of recent iterative queries. It also includes bindings_ to `MaxMind GeoIP`_, and presents a world map coloured by frequency of queries, so you can see where do your queries go. +The *stats* module is required for plotting query rate. By default, it listens on ``localhost:8053``. Examples @@ -34,4 +35,4 @@ It depends on Go 1.5+, `github.com/abh/geoip <bindings>`_ package. $ go get github.com/abh/geoip .. _`MaxMind GeoIP`: https://www.maxmind.com/en/home -.. _bindings: https://github.com/abh/geoip \ No newline at end of file +.. _bindings: https://github.com/abh/geoip diff --git a/modules/tinyweb/tinyweb/tinyweb.tpl b/modules/tinyweb/tinyweb/tinyweb.tpl index 06137890ac873f904fe646d0413edb8e40f96c47..3dd563e8f8d9d883eb489132499e91bf3597c4e4 100644 --- a/modules/tinyweb/tinyweb/tinyweb.tpl +++ b/modules/tinyweb/tinyweb/tinyweb.tpl @@ -30,7 +30,7 @@ <div class="epoch" id="stats"></div> <ul class="legend"></ul> <h2>Queried servers</h2> - <div id="map" style=""></div> + <div id="map" style="position: relative;"></div> <h2>Last queries</h2> <table id="feed"></table> </div>