OverviewArchitectureRecipeSourceProcessorSinkContext Graph for AI
OverviewArchitectureRecipeSourceProcessorSinkContext Graph for AI

Console

Prints each record to standard output. Useful for testing a recipe before sending data anywhere.

Usage

sinks:
  - name: console

Configuration

KeyTypeDescriptionRequired
formatstringOutput format: json or markdown. Defaults to json.optional

Output format

With json (the default), each record prints as one JSON line: {"entity": {...}, "edges": [...]} with snake_case keys. The edges field is left out when a record has no edges. With markdown, each record prints as a readable Markdown block, and records are separated by a --- line.

CompassFile
On this page
UsageConfigurationOutput format