Ultra-fast columnar log engine in pure Go. 1.2M+ logs/s, sub-ms bitset queries & Web Studio.
225
VortexLogs is an ultra-high-performance columnar log aggregation and real-time observability engine written in 100% pure Go (zero CGO, zero Java, zero JVM).
It solves the operational bloat and disk multiplication of legacy log platforms (Elasticsearch, Logstash, Loki, Promtail) by delivering a compact 11 MB container that boots in <10 milliseconds and uses <35 MB RAM.
Run VortexLogs with the embedded Quantum Log Studio and native Syslog ingestion:
docker run -d \
--name vortexlogs \
-p 9428:9428 \
-p 9429:9429/udp \
-p 9429:9429/tcp \
-v vortexlogs_data:/data \
ianshugarg/vortexlogs:latest
9428: HTTP REST API & Quantum Log Studio (Live web dashboard, WebSocket live tail, and ingest endpoints)9429: Dual Syslog RFC 5424 / RFC 3164 Listener (Native high-speed UDP & TCP stream ingestion)Open your browser to:
š http://localhost:9428
DEBUG, INFO, WARN, ERROR, FATAL).curl -X POST http://localhost:9428/api/v1/ingest \
-H "Content-Type: application/json" \
-d '[
{
"service": "checkout-svc",
"level": "INFO",
"message": "Processed cart checkout #9012 item_count=4",
"labels": {"env": "prod", "region": "us-east-1"}
},
{
"service": "billing-svc",
"level": "WARN",
"message": "Payment gateway latency 890ms above p95 SLA",
"labels": {"env": "prod", "region": "us-east-1"}
}
]'
# Forward events via standard Linux syslog / rsyslog over UDP
*.* @localhost:9429
# Or forward over TCP with RFC 5424 structured framing
*.* @@localhost:9429;RSYSLOG_SyslogProtocol23Format
Content type
Image
Digest
sha256:2eae3b540ā¦
Size
5.5 MB
Last updated
about 20 hours ago
docker pull ianshugarg/vortexlogs