goxe
reduce large volumes of repetitive logs into compact, readable aggregates.
goxe is a high-performance log reduction tool written in go. it ingests logs (currently via syslog/udp), normalizes and filters them, and aggregates repeated messages into a single-line format with occurrence counts. the result is less noise, lower bandwidth usage, and cheaper storage without losing visibility into recurring issues.
goxe is designed to run continuously in the background as part of a logging pipeline or sidecar.
requirements
go 1.25.5 or higher (to build from source)
aggregation behavior
goxe performs several transformations before aggregation:
strips timestamps and date prefixes
converts text to lowercase
... continue reading