Skip to main content
Prerequisites: Telemetry introduces the environment variables and telemetry architecture. This page covers logging configuration in detail. Mellea provides two logging layers: a built-in console logger for local development and an optional OTLP exporter for centralized log aggregation. Both work simultaneously when enabled.

Console logging

Mellea uses FancyLogger, a color-coded singleton logger built on Python’s logging module. All internal Mellea modules obtain their logger via FancyLogger.get_logger().

Configuration

VariableDescriptionDefault
DEBUGSet to any value to enable DEBUG-level outputunset (INFO level)
FLOGSet to any value to forward logs to a local REST endpoint at http://localhost:8000/api/receiveunset
By default, FancyLogger logs at INFO level with color-coded output to stdout. Set the DEBUG environment variable to lower the level to DEBUG:
export DEBUG=1
python your_script.py

Log format

Console output uses ANSI color codes by log level:
  • Cyan — DEBUG
  • Grey — INFO
  • Yellow — WARNING
  • Red — ERROR
  • Bold red — CRITICAL
Each message is formatted as:
=== HH:MM:SS-LEVEL ======
message

OTLP log export

When the [telemetry] extra is installed, Mellea can export logs to an OTLP collector alongside the existing console output. This is useful for centralizing logs from distributed services.
Note: OTLP logging is disabled by default. When disabled, there is zero overhead — no OTLP handler is created.

Enable OTLP logging

export MELLEA_LOGS_OTLP=true
export OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317

# Optional: logs-specific endpoint (overrides general endpoint)
export OTEL_EXPORTER_OTLP_LOGS_ENDPOINT=http://localhost:4318

# Optional: set service name
export OTEL_SERVICE_NAME=my-mellea-app

How it works

When MELLEA_LOGS_OTLP=true, FancyLogger adds an OpenTelemetry LoggingHandler alongside its existing handlers:
  • Console handler — continues to work normally (color-coded output)
  • REST handler — continues to work normally (when FLOG is set)
  • OTLP handler — exports logs to the configured OTLP collector
Logs are exported using OpenTelemetry’s Logs API with batched processing for efficiency.

Programmatic access

Use get_otlp_log_handler() to add OTLP log export to your own loggers:
import logging
from mellea.telemetry import get_otlp_log_handler

logger = logging.getLogger("my_app")
handler = get_otlp_log_handler()
if handler:
    logger.addHandler(handler)
    logger.info("This log will be exported via OTLP")
The function returns None when OTLP logging is disabled or not configured, so the if handler check is always safe.

OTLP collector setup example

cat > otel-collector-config.yaml <<EOF
receivers:
  otlp:
    protocols:
      grpc:
        endpoint: 0.0.0.0:4317

exporters:
  debug:
    verbosity: detailed
  file:
    path: ./mellea-logs.json

service:
  pipelines:
    logs:
      receivers: [otlp]
      exporters: [debug, file]
EOF

docker run -p 4317:4317 \
  -v $(pwd)/otel-collector-config.yaml:/etc/otelcol/config.yaml \
  -v $(pwd):/logs \
  otel/opentelemetry-collector:latest

Integration with observability platforms

OTLP logs work with any OTLP-compatible platform:
  • Grafana Loki — log aggregation and querying
  • Elasticsearch — log storage and analysis
  • Datadog — unified logs, traces, and metrics
  • New Relic — centralized logging
  • Splunk — log analysis and monitoring

Performance

  • Zero overhead when disabled: No OTLP handler is created, no performance impact.
  • Batched export: Logs are batched and exported asynchronously.
  • Non-blocking: Log export never blocks application code.
  • Minimal overhead when enabled: OpenTelemetry’s efficient batching minimizes impact.

Troubleshooting

Logs not appearing in OTLP collector:
  1. Verify MELLEA_LOGS_OTLP=true is set.
  2. Check that an OTLP endpoint is configured (OTEL_EXPORTER_OTLP_ENDPOINT or OTEL_EXPORTER_OTLP_LOGS_ENDPOINT).
  3. Verify the OTLP collector is running and configured to receive logs.
  4. Check collector logs for connection errors.
Warning about missing endpoint:
WARNING: OTLP logs exporter is enabled but no endpoint is configured
Set either OTEL_EXPORTER_OTLP_ENDPOINT or OTEL_EXPORTER_OTLP_LOGS_ENDPOINT. Connection refused:
  1. Verify the OTLP collector is running: docker ps | grep otel
  2. Check the endpoint URL is correct (default: http://localhost:4317).
  3. Verify network connectivity: curl http://localhost:4317

See also:
  • Telemetry — overview of all telemetry features and configuration.
  • Tracing — distributed traces with Gen-AI semantic conventions.
  • Metrics — token usage metrics, exporters, and custom instruments.