Webhook-based log viewer. Send logs via POST, view them in real-time via SSE.
curl -X POST https://rlog.try-dabble.com/api/log/myapp \
-H "Content-Type: application/json" \
-d '{"level":"info","message":"Hello world"}'
curl -X POST https://rlog.try-dabble.com/api/log/myapp \
-H "Content-Type: application/json" \
-d '[{"level":"info","message":"msg1"},{"level":"error","message":"msg2"}]'
Navigate to /myapp to see the "myapp" channel viewer.