Skip to content

Commit 08ec0d4

Browse files
authored
change the time range from 30 to 60 days (GoogleCloudPlatform#951)
1 parent dde0e85 commit 08ec0d4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dags/dashboard/configs/export_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class AirflowTable:
9191
AirflowTable(
9292
table_name="dag_run",
9393
time_field_for_filtering="updated_at",
94-
time_frame="30 days",
94+
time_frame="60 days",
9595
post_actions=[
9696
lambda df: dataframe_inplace_apply(df, "conf", safe_json)
9797
],
@@ -107,7 +107,7 @@ class AirflowTable:
107107
AirflowTable(
108108
table_name="task_instance",
109109
time_field_for_filtering="updated_at",
110-
time_frame="30 days",
110+
time_frame="60 days",
111111
post_actions=[
112112
lambda df: dataframe_inplace_apply(df, "executor_config", safe_json)
113113
],
@@ -116,7 +116,7 @@ class AirflowTable:
116116
AirflowTable(
117117
table_name="task_fail",
118118
time_field_for_filtering="start_date",
119-
time_frame="30 days",
119+
time_frame="60 days",
120120
post_actions=[lambda df: cast_int(df, "duration")],
121121
),
122122
# Holds the rendered parameters and templates for each task instance.

0 commit comments

Comments
 (0)