We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5915d0d commit b3db48bCopy full SHA for b3db48b
2 files changed
dbt_project.yml
@@ -18,6 +18,7 @@ vars:
18
re_data:time_window_start: '{{ (run_started_at - modules.datetime.timedelta(1)).strftime("%Y-%m-%d 00:00:00") }}'
19
re_data:anomaly_detection_look_back_days: 30
20
re_data:select: null
21
+ re_data:re_data_anomalies_filtered: re_data_anomalies
22
23
re_data:alerting_z_score: 3
24
models/alerts/re_data_alerts.sql
@@ -5,7 +5,7 @@ select
5
last_value_text as value,
6
time_window_end
7
from
8
- {{ ref('re_data_anomalies') }}
+ {{ ref(var('re_data:re_data_anomalies_filtered')) }}
9
union all
10
11
select
0 commit comments