summaryrefslogtreecommitdiff
path: root/libunbound/unbound.h
diff options
context:
space:
mode:
Diffstat (limited to 'libunbound/unbound.h')
-rw-r--r--libunbound/unbound.h10
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;
};
/**