[APM] enable sanitize_field_names for .NET (#85616)

This commit is contained in:
Gergely Kalapos 2020-12-10 22:01:48 +01:00 committed by GitHub
parent ab082647ac
commit 7d0a7b7745
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -235,7 +235,7 @@ export const generalSettings: RawSettingDefinition[] = [
'Sometimes it is necessary to sanitize, i.e., remove, sensitive data sent to Elastic APM. This config accepts a list of wildcard patterns of field names which should be sanitized. These apply to HTTP headers (including cookies) and `application/x-www-form-urlencoded` data (POST form fields). The query string and the captured request body (such as `application/json` data) will not get sanitized.',
}
),
includeAgents: ['java', 'python', 'go'],
includeAgents: ['java', 'python', 'go', 'dotnet'],
},
// Ignore transactions based on URLs

View file

@ -128,6 +128,7 @@ describe('filterByAgent', () => {
'capture_headers',
'log_level',
'recording',
'sanitize_field_names',
'span_frames_min_duration',
'stack_trace_limit',
'transaction_max_spans',