Skip to main content
A Reporter belongs to the current Invocation. It can send information known to that process to an external system. It does not own the Record, select samples, or replace later Report viewing.

Choose the right output

Use JUnit in CI

The file is an external output for the CI platform. The quiescent Record remains the owner of current Verdicts, Usage, assertions, and diagnostics.

Read current-process feedback

The output is ordered NDJSON. Progress and diagnostic records describe only the current Invocation. The final record is a receipt with its invocationId, runIds, timing, and completion status. Use those runIds to select a Sample in a later step. Do not treat the feedback stream as a persisted Record protocol.

Write a custom Reporter

A custom Reporter receives the data that the current process makes available. Use it for a destination not covered by JUnit or an existing integration. Keep its work bounded: reporter failure should be reported clearly without changing the persisted facts that a later Report reads. When the Invocation finishes, use its receipt’s Run IDs to inspect the resulting historical facts:

Keep long-lived data in the Record

The Reporter, JUnit file, and NDJSON stream are outputs for one process. The Record is an editable fact dataset. Its named owner-local channels preserve business values until an authorized writer or user edits them while the directory is quiescent. For result inspection and static sharing, see Viewing Results and Publish a Static Report.