-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Metrics for TLS resumes, DoH, and aggressive NSEC #53
Conversation
This patch maps unbound's `num.query.agressive.*` stats to `query_aggressive_nsec` metrics. This counter tracks the number of queries that unbound synthesised answers based on the cached NSEC records. See <https://unbound.docs.nlnetlabs.nl/en/latest/topics/privacy/aggressive-nsec.html> Closes: letsencrypt#48
This patch adds `query_tls_resume_total` and `query_https_total` metrics, which track the number of queries received using TLS resume and DNS-over-HTTPS transport, resp. Also the descriptions for `query_tcp_total` and `query_tls_total` are clarified that these numbers include DoT and DoH queries.
👍 to this PR. Looking forward to query_https_total metrics to appear in next release. Unfortunately this PR didn't make it to 0.4.2 |
I'm taking a look at this now. |
Codecov ReportPatch and project coverage have no change.
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. Additional details and impacted files@@ Coverage Diff @@
## main #53 +/- ##
=====================================
Coverage 5.23% 5.23%
=====================================
Files 1 1
Lines 191 191
=====================================
Hits 10 10
Misses 181 181
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
Thank you both for your reviews! |
Aggressive NSEC stats
This patch maps unbound's
num.query.agressive.*
stats toquery_aggressive_nsec
metrics.This counter tracks the number of queries that unbound synthesised answers based on the cached NSEC records.
See https://unbound.docs.nlnetlabs.nl/en/latest/topics/privacy/aggressive-nsec.html
Closes: #48
More transport stats: TLS resumes and DoH queries
This patch adds
query_tls_resume_total
andquery_https_total
metrics, which track the number of queries received using TLS resume and DNS-over-HTTPS transport, resp.Also the descriptions for
query_tcp_total
andquery_tls_total
are clarified that these numbers include DoT and DoH queries.