Skip to main content
Platform Administration

Monitoring with Structured Logging

February 15, 20264 views0 found this helpful

Structured Logging

Boottify uses structured logging throughout the platform infrastructure. Instead of plain text console output, all logs are formatted as structured JSON objects with consistent fields for easy parsing and searching.

Log Structure

Each log entry includes:

  • timestamp: ISO 8601 formatted date/time
  • level: One of debug, info, warn, error
  • message: Human-readable description
  • context: Additional metadata (request ID, user ID, app ID)
  • source: The module or service that generated the log

Viewing Logs

Access application logs through the control center:

  1. Navigate to Apps → Your App → Logs
  2. Use filters to narrow by log level, time range, or search term
  3. Click any log entry to see the full structured payload

Log Levels

LevelWhen to Use
errorUnexpected failures requiring immediate attention
warnDegraded state or approaching limits
infoNormal operational events (deployments, scaling)
debugDetailed diagnostic information (disabled in production by default)

Infrastructure Logs

Platform infrastructure logs cover 10 core modules including deployment executor, Kubernetes provisioner, DNS client, SSL manager, container manager, and WebSocket server. These logs are available to administrators under Admin → System Logs.

Was this article helpful?

Let us know if this article helped you find what you were looking for.