Skip to main content

FUME_FILE_LOGGING

Applies to

  • Enterprise v3.1.1+

Defaults

  • Enterprise package/runtime: true
  • Helm chart default: false (stdout-only Kubernetes logging by default)

Examples

# Keep rotating file logs enabled (default behavior)
FUME_FILE_LOGGING=true

# Disable rotating file logs and stdout/stderr file mirroring
FUME_FILE_LOGGING=false

Purpose

Controls whether Enterprise persists logs to rotating files and mirrors raw process stdout/stderr into those files.

Notes

  • Supported disable values are false, 0, off, no, and disabled (case-insensitive).
  • Supported enable values are true, 1, on, yes, and enabled (case-insensitive).
  • If unset or invalid, Enterprise defaults to enabled file logging.
  • When disabled, stdout/stderr still flow to the process/container output stream for platform log collection.
  • When enabled, mirrored stdout/stderr still respect LOG_LEVEL.
  • In Kubernetes/Helm environments, prefer stdout-only collection unless you intentionally provide and manage writable persistent log storage.