LogNorth Documentation
Logs + error tracking. Self-hosted.
LogNorth
Section titled “LogNorth”Errors detected automatically.
Quick Start
Section titled “Quick Start”1. Install LogNorth
curl -fsSL lognorth.com/install | sudo bash2. Add middleware
import { lognorth } from '@lognorth/client/hono'
app.use(lognorth())Requests and jobs logged automatically.
3. Add custom logs
import { log } from '@lognorth/client'
log("User signed up", { user_id: 123 })log("Payment failed", { user_id: 123, error: "Card declined" })Error Detection
Section titled “Error Detection”| Context | Result |
|---|---|
status >= 500 | Error |
error field | Error |
| Everything else | OK |
Integrations
Section titled “Integrations”Under the Hood
Section titled “Under the Hood”Just HTTP POST. No vendor lock-in.
POST /api/v1/eventsAuthorization: Bearer YOUR_API_KEY
{"message": "...", "context": {...}}