Receive infrastructure logs over TCP or UDP using standard syslog protocols.
Collect logs from servers, routers, and firewalls using standard syslog. Tell supports both TCP (reliable delivery) and UDP (high-volume, best-effort) with RFC 3164 (BSD) and RFC 5424 (IETF) formats.
For reliable log delivery with connection-based framing. Messages are newline-delimited.
Copy
[sources.syslog_tcp]port = 514
Syslog has no authentication — any client that can reach the port can send logs. Restrict access at the network level (firewall rules, private subnets).Port 514 requires root. Use a higher port (e.g., 50514) and redirect with iptables, or run Tell with CAP_NET_BIND_SERVICE.
For high-volume log ingestion where best-effort delivery is acceptable. Multiple workers share the same port using kernel-level load balancing.
Copy
[sources.syslog_udp]port = 514
When the pipeline is busy, packets are dropped rather than queued — consistent with UDP semantics. If you’re seeing drops under load, increase the worker count:
TCP when you need every message delivered — audit logs, security events, compliance data.UDP when volume matters more than completeness — application logs, metrics, high-traffic syslog servers.You can run both at once on different ports to handle both cases.