NOERROR in CLIENT_QUERY messages #682
misaki-kawakami
started this conversation in
General
Replies: 1 comment 1 reply
-
Can you use the
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We use afpacket sniffer to collect messages and then send the data to Elastic & Prometheus loggers. Each message type, whether
CLIENT_QUERY
orCLIENT_RESPONSE
, contains thedns.rcode key
. In the case ofCLIENT_RESPONSE
it matches the expected types. However, in the case ofCLIENT_QUERY
, the statusNOERROR
is logged for all messages.We can work with this in Elastic. The problem is with the Prometheus logger and the interpretation of the metric
dnscollector_top_noerror_domains
, where allCLIENT_QUERY
messages are counted because theirdns.rcode
isNOERROR
.So, for example, a domain that is in
top_nonexistent_domains
is also intop_noerror_domains.
I'm not sure if this is the expected behaviour.Beta Was this translation helpful? Give feedback.
All reactions