Replies: 2 comments 1 reply
-
Hi, The current ClickHouse logger is basic and not efficient under high load. To improve flexibility and performance, the logger needs the following updates:
Could you please open an issue to track this enhancement? Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hi, I would also love to see these improvements. In the meantime a decent workaround I used is to pipe the json into Vector (I used transport: unix and a unix socket for this), perform any transformations there and then sink it into Clickhouse or any other of the storage backends it supports (fluentd is also an option of course, I just found Vector simpler, lighter and faster) |
Beta Was this translation helpful? Give feedback.
-
Hi all
Logging to STDOUT captures all the appropriate DNS flags:
Sending
dnstap
captured traffic to Clickhouse pushes only the following fields into the database (example for a query):POST /?Query=INSERT%20INTO%20dns.records(identity,queryip,qname,operation,family,protocol,qtype,rcode,timensec,timestamp)
Is there a way, to send the whole output (incl. FLAG fields) to Clickhouse for further analysis? If yes, how should the table scheme in Clickhouse must be look like?
Beta Was this translation helpful? Give feedback.
All reactions