> Remote Logger

Webhook-based log viewer. Send logs via POST, view them in real-time via SSE.

Send a log:

curl -X POST https://rlog.try-dabble.com/api/log/myapp \
  -H "Content-Type: application/json" \
  -d '{"level":"info","message":"Hello world"}'

Batch send:

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"}]'

View logs:

Navigate to /myapp to see the "myapp" channel viewer.