Pi-hole
query-type-distribution.kql
Distribution of DNS query types (A, AAAA, TXT, etc.).
// Author: Ian D. Hanley (DevSecOpsDad) | linkedin.com/in/ianhanley | devsecopsdad.com | devsecopsdadattack.com
// Determine the distribution of query types
PiHole
| summarize Count = count() by QueryType // Aggregate counts by query type
| render piechart // Visualize the data as a pie chart