Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add run-operation command to run_results.json #3472

Merged
merged 9 commits into from
Jun 7, 2023
10 changes: 9 additions & 1 deletion website/docs/reference/artifacts/run-results-json.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@ sidebar_label: "Run results"

**Current schema**: [`v4`](https://schemas.getdbt.com/dbt/run-results/v4/index.html)

**Produced by:** [`build`](/reference/commands/build) [`compile`](/reference/commands/compile) [`docs generate`](/reference/commands/cmd-docs) [`seed`](/reference/commands/seed) [`snapshot`](/reference/commands/snapshot) [`test`](/reference/commands/test) [`run`](/reference/commands/run)
**Produced by:**
[`build`](/reference/commands/build)
[`compile`](/reference/commands/compile)
[`docs generate`](/reference/commands/cmd-docs)
[`run`](/reference/commands/run)
[`seed`](/reference/commands/seed)
[`snapshot`](/reference/commands/snapshot)
[`test`](/reference/commands/test) <VersionBlock firstVersion="1.6">[`run-operation`](/reference/commands/run-operation) </VersionBlock>


This file contains information about a completed invocation of dbt, including timing and status info for each node (model, test, etc) that was executed. In aggregate, many `run_results.json` can be combined to calculate average model runtime, test failure rates, the number of record changes captured by snapshots, etc.

Expand Down