How it works
1. Open a bin
Visit any URL to create a bin. Pick something random so others can't guess it.
https://log-bin.example.com/my-debug-session2. POST your logs
Send log lines to the same URL. One line per log entry.
cURL
curl -X POST https://log-bin.example.com/my-debug-session \
-d "something happened"JavaScript
fetch('https://log-bin.example.com/my-debug-session', {
method: 'POST',
body: 'debug: ' + JSON.stringify(data)
})Fastly VCL
# Add log-bin as an HTTPS log endpoint, then:
log "syslog " req.service_id " log-bin :: " req.url;3. Watch them appear
Logs stream to the browser in real-time. Use the filter box to search.