Data Auditing Component
Takes the data object passed into it and saves it as an audit log for the deployment, which can be viewed in the UI. Pipeline creators should take care to exclude or sanitize sensitive information before passing it into the Data Auditing component
Data Governance
This component does not modify the Data Governance status of any items.
Input Channels
input — The PipelineData object to pass to the Platform as an audit log
level — Receives a StringData object and updates the logging level for messages. Valid levels are INFO, WARN, and ERROR.
Output Channels
output — The PipelineData object that was passed into the input channel – a passthrough. It is common for a Data Auditing’s output channel to not be connected to anything.
Parameters
logLevel – (String, default: INFO ) The log level to use when sending out audit logs.
message – (String, default: {{object}} ) The message that should be output to the audit log. If the message contains the token {{object}}, then the input object will be converted to a string and inserted into the message in place of the {{object}} token.