Floe can emit structured run events for orchestrators like Dagster/Airflow.
- Intended for interactive CLI use.
- Prints a human summary at the end of the run.
- Intended for orchestrators.
- stdout is NDJSON only: one JSON object per line.
- stderr contains human output (summary, warnings, errors).
Each JSON line includes:
schema: "floe.log.v1"(stable)level: "info" | "warn" | "error"(stable)event: ...plus event-specific fields
The final line on stdout is always the run_finished event.
run_started: run metadata (run_id,config,report_base,ts_ms)entity_started: entity name (name,ts_ms)file_started: entity/input pair (entity,input,ts_ms)file_finished: file outcome and counts (status,rows,accepted,rejected,elapsed_ms,ts_ms)schema_evolution_applied: Delta additive schema-evolution audit event (entity,mode,added_columns,ts_ms)entity_finished: entity totals (status,files,rows,accepted,rejected,warnings,errors,ts_ms)run_finished: final run totals and exit code (status,exit_code,files,rows,accepted,rejected,warnings,errors,summary_uri,ts_ms)log: structured warning/error line (log_level,code,message, optionalentity, optionalinput,ts_ms)
schema_evolution_applied is emitted only when Floe actually adds columns to a Delta table. No event is emitted for strict mode, non-Delta sinks, or no-op add_columns runs.
- Suppresses all structured event output.
- Human summary is still printed to stderr at the end of the run.
- OpenLineage events are still posted when
lineage:is configured — log format does not gate lineage emission. - Lineage HTTP errors (401, timeouts) are emitted as warnings to stderr even when log output is otherwise suppressed.
- Prints the same lifecycle events as plain text lines.
- Also prints the human end-of-run summary.
floe run -c config.yml --log-format json | jq -cr 'select(.event == "run_finished")'# machine events
floe run -c config.yml --log-format json > events.ndjson
# human logs
floe run -c config.yml --log-format json 2> run.log{"schema":"floe.log.v1","level":"info","event":"schema_evolution_applied","run_id":"2026-03-11T16-31-00Z","entity":"customer","mode":"add_columns","added_columns":["email"],"ts_ms":1741710660000}