diff options
Diffstat (limited to 'libunbound/unbound.h')
| -rw-r--r-- | libunbound/unbound.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libunbound/unbound.h b/libunbound/unbound.h index 1b0f54fd2b6b..fbd69cab0e71 100644 --- a/libunbound/unbound.h +++ b/libunbound/unbound.h @@ -747,6 +747,16 @@ struct ub_server_stats { long long num_query_dnscrypt_replay; /** number of dnscrypt nonces cache entries */ long long nonce_cache_count; + /** number of queries for unbound's auth_zones, upstream query */ + long long num_query_authzone_up; + /** number of queries for unbound's auth_zones, downstream answers */ + long long num_query_authzone_down; + /** number of times neg cache records were used to generate NOERROR + * responses. */ + long long num_neg_cache_noerror; + /** number of times neg cache records were used to generate NXDOMAIN + * responses. */ + long long num_neg_cache_nxdomain; }; /** |
