You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/02/07 19:44:37 UTC

[GitHub] [airflow] bbovenzi commented on a change in pull request #20733: Add Audit Log View to Dag View

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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org