We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc97bb4 commit 86bd68eCopy full SHA for 86bd68e
models/marts/tvl/tvl_agg.yml
@@ -3,6 +3,22 @@ version: 2
3
models:
4
- name: tvl_agg
5
description: "This table aggregates TVL from accounts and trustlines to calculate total TVL"
6
+ tests:
7
+ - elementary.schema_changes:
8
+ tags: [schema_changes]
9
+ config:
10
+ severity: warn
11
+ - dbt_utils.recency:
12
+ tags: [recency]
13
+ datepart: day
14
+ field: day
15
+ interval: 2
16
+ ignore_time_component: true
17
18
+ enabled: '{{ target.name == "ci" or var("is_recency_airflow_task") == "true" }}'
19
+ severity: '{{ "error" if target.name == "prod" else "warn" }}'
20
+ meta:
21
+ description: "Monitors the freshness of your table over time, as the expected time between data updates."
22
columns:
23
- name: day
24
description: '{{ doc("day") }}'
0 commit comments