bbovenzi commented on a change in pull request #20733:
URL: https://github.com/apache/airflow/pull/20733#discussion_r801000678
##########
File path: airflow/config_templates/default_airflow.cfg
##########
@@ -670,6 +670,17 @@ auto_refresh_interval = 3
# Boolean for displaying warning for publicly viewable deployment
warn_deployment_exposure = True
+# Comma separated string of view events to exclude from dag audit view.
+# All other events will be added minus the ones passed here.
+# The audit logs in the db will not be affected by this parameter.
+audit_view_excluded_events =
gantt,landing_times,tries,duration,calendar,graph,tree
Review comment:
```suggestion
audit_view_excluded_events =
gantt,landing_times,tries,duration,calendar,graph,tree,tree_data
```
##########
File path: airflow/config_templates/config.yml
##########
@@ -1334,6 +1334,24 @@
type: boolean
example: ~
default: "True"
+ - name: audit_view_excluded_events
+ description: |
+ Comma separated string of view events to exclude from dag audit view.
+ All other events will be added minus the ones passed here.
+ The audit logs in the db will not be affected by this parameter.
+ version_added: 2.3.0
+ type: string
+ example: ~
+ default: "gantt,landing_times,tries,duration,calendar,graph,tree"
Review comment:
```suggestion
default:
"gantt,landing_times,tries,duration,calendar,graph,tree,tree_data"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]