Getting Started
Install the SDK, create your first project, and start sending logs in under 2 minutes.
ExploreSDK Reference
Full reference for Node.js, Browser, React, Python, and PHP SDKs with code examples.
ExploreAPI Reference
REST API docs for log ingestion, request logging, feedback, releases, and heartbeat.
ExploreAdmin Guide
Dashboard navigation, team management, billing, organization settings, and access control.
ExploreIntegrations
Connect with Slack, webhooks, CI/CD pipelines, GitHub, and more.
ExploreAI Features
AI Chat, auto-triage, incident timelines, natural language alerts, and release analysis.
ExploreGuides & Articles
Tutorials, best practices, and how-tos across 13 categories with 57 articles.
ExploreSupport
Submit a support ticket and get help from the Lognitor team.
ExploreQuick 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.
import Lognitor from '@lognitor/node';
Lognitor.init({
apiKey: 'your-api-key',
service: 'my-api',
environment: 'production',
});
Lognitor.info('Server started', {
metadata: { port: 3000 },
});