Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions legacy/src/Command/Integration/IntegrationCommandBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,21 @@ private function getFields(): array
'required' => false,
'avoidQuestion' => true,
]),
'redaction' => new BooleanField('Redaction', [
'conditions' => ['type' => [
'httplog',
'newrelic',
'splunk',
'sumologic',
'syslog',
'otlplog',
]],
'description' => 'Whether to enable built-in PII redaction (e.g. email addresses) before forwarding log lines',
'questionLine' => 'Should built-in PII redaction be enabled',
'default' => false,
'required' => false,
'avoidQuestion' => true,
]),
'headers' => new ArrayField('HTTP header', [
'optionName' => 'header',
'conditions' => ['type' => [
Expand Down