Install Logwiz
Follow the Docker Compose installation guide to start Logwiz. The quickest option is:
Sign in
Open http://localhost:8282 in your browser. Sign in with the default credentials:
- Username:
logwiz - Password:
logwiz
Change the default credentials before deploying to any environment accessible beyond your local machine. For non-local deployments, set
LOGWIZ_ADMIN_USERNAME and LOGWIZ_ADMIN_PASSWORD as environment variables before the first start so the default credentials are never used.Create an ingest token
Logwiz requires a bearer token to accept log data. To create one:
- In the top navigation, go to Administration → Send Logs.
- Click Create token and give it a name.
- Copy the token value immediately — it is shown only once.
Send sample logs
Use The
curl to post a couple of NDJSON log entries to the bundled otel-logs-v0_9 index. Replace <your-ingest-token> with the token you just copied:?commit=wait_for parameter tells Quickwit to index the documents before returning a response, so the logs are immediately searchable.The ingest endpoint accepts NDJSON format — one JSON object per line, with no trailing comma.Search your logs
Go back to http://localhost:8282 and select the
otel-logs-v0_9 index. The two log entries you sent appear in the results. Try filtering by severity_text:ERROR to see only the error entry.Next steps
- Configure your index fields to map log level, message, and traceback fields for your data schema.
- Invite team members using the invite-based access controls.
- Set up Google OAuth to let your team sign in with their company Google accounts.
- Explore the Ingest API reference to integrate Logwiz with your existing log shippers.