From: Evan Hunt Date: Thu, 9 Jan 2014 23:14:57 +0000 (-0800) Subject: [master] stats improvements X-Git-Tag: v9.10.0a2~131 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=789252d55f025db52ee02aa933c9f09a4aadfa97;p=thirdparty%2Fbind9.git [master] stats improvements 3700. [func] Allow access to subgroups of XML statistics via special URLs http://:/xml/v3/server, /zones, /net, /tasks, /mem, and /status. [RT #35115] 3699. [bug] Improvements to statistics channel XSL stylesheet: the stylesheet can now be cached by the browser; section headers are omitted from the stats display when there is no data in those sections to be displayed; counters are now right-justified for easier readability. [RT #35117] --- diff --git a/CHANGES b/CHANGES index d465d087bee..62deca98577 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,14 @@ +3700. [func] Allow access to subgroups of XML statistics via + special URLs http://:/xml/v3/server, + /zones, /net, /tasks, /mem, and /status. [RT #35115] + +3699. [bug] Improvements to statistics channel XSL stylesheet: + the stylesheet can now be cached by the browser; + section headers are omitted from the stats display + when there is no data in those sections to be + displayed; counters are now right-justified for + easier readability. [RT #35117] + 3698. [cleanup] Replaced all uses of memcpy() with memmove(). [RT #35120] diff --git a/bin/named/bind9.xsl b/bin/named/bind9.xsl index d7ceb48f683..9d003830afd 100644 --- a/bin/named/bind9.xsl +++ b/bin/named/bind9.xsl @@ -20,61 +20,66 @@ - + + + + // Server Incoming Query Types + graphs.push({ + 'title' : "Server Incoming Query Types", + 'target': 'chart_incoming_qtypes', + 'style': 'barchart', + 'data': [['Type','Counter'],['',],] + }); + + + + // Server Incoming Requests by opcode + graphs.push({ + 'title' : "Server Incoming Requests by DNS Opcode", + 'target': 'chart_incoming_opcodes', + 'style': 'barchart', + 'data': [['Opcode','Counter'],['',],]}); + +