[v9_9] better zone-statistics syntax

3501.	[func]		zone-statistics now takes three options: full,
			terse, and none. "yes" and "no" are retained as
			synonyms for full and terse, respectively. [RT #29165]
(cherry picked from commit 40a7e85f3e)
This commit is contained in:
Evan Hunt
2013-02-27 12:03:29 -08:00
parent 22c2ef8ead
commit dc93e35701
11 changed files with 161 additions and 47 deletions

View File

@@ -66,6 +66,7 @@ options {
serial-queries 10;
serial-query-rate 100;
server-id none;
zone-statistics none;
};
view "first" {
match-clients {
@@ -78,6 +79,7 @@ view "first" {
};
dnssec-lookaside auto;
dnssec-validation auto;
zone-statistics terse;
};
view "second" {
match-clients {
@@ -87,6 +89,7 @@ view "second" {
type master;
file "yyy";
update-policy local;
zone-statistics yes;
};
zone "example2" {
type static-stub;
@@ -94,7 +97,9 @@ view "second" {
forwarders {
10.53.0.4;
};
zone-statistics no;
};
dnssec-lookaside "." trust-anchor "dlv.isc.org.";
dnssec-validation auto;
zone-statistics full;
};