LogInformant documentation
Practical integration guides for Serilog, Winston, Python logging, Monolog, Logback, raw HTTP ingest, and AI log analysis.
Choose the integration path that matches your stack
Serilog sink
The recommended path for ASP.NET Core, worker services, and modern .NET applications.
.NET FrameworkSerilog, NLog, or log4net
Detailed setup for established .NET Framework 4.8 applications.
Node.jsWinston transport
Ship logs from Express, Next.js, NestJS, and general Node services.
PythonPython logging handler
Attach a handler to the standard library logging module.
Monolog handler
Works with Laravel, Symfony, and plain PHP via Monolog v3.
JavaLogback appender
Structured Java logging for Spring Boot and Java 11+ services.
Any stackHTTP ingest API
Batch JSON directly to the ingest endpoint when you need a custom integration.
Pro and upAI log analysis
Analyze individual log entries with your own supported AI provider key.
API basics
Every integration ultimately sends events to the same ingest endpoint:
POST https://app.loginformant.com/api/ingest/batch
X-API-Key: YOUR-API-KEY
{
"logs": [
{
"timestamp": "2026-04-08T18:30:00Z",
"level": "Error",
"message": "Something went wrong",
"source": "MyApp.OrderService",
"exception": "System.NullReferenceException: ...",
"properties": {
"userId": 42
}
}
]
}
Supported levels: Debug, Information, Warning, Error, and Fatal.