Documentation

Explore the docs

Everything you need to instrument your app with Lognitor — from first log to AI-powered incident response.

Quick Start

Up and running in 5 lines of code

Install the SDK, initialize with your project key, and start sending logs. No agents, no configuration files, no complex setup.

Sub-second ingestion with automatic batching
Built-in PII redaction and URL scrubbing
AI surfaces insights before your users notice
app.js
import Lognitor from '@lognitor/node';

Lognitor.init({
  apiKey: 'your-api-key',
  service: 'my-api',
  environment: 'production',
});

Lognitor.info('Server started', {
  metadata: { port: 3000 },
});