[APM] Add log_level config option to the Node.js Agent (#85346)

This commit is contained in:
Trent Mick 2020-12-09 10:25:23 -08:00 committed by GitHub
parent 21ea4f7a6f
commit e3f150513c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -110,7 +110,7 @@ export const generalSettings: RawSettingDefinition[] = [
{ text: 'critical', value: 'critical' },
{ text: 'off', value: 'off' },
],
includeAgents: ['dotnet', 'ruby', 'java', 'python'],
includeAgents: ['dotnet', 'ruby', 'java', 'python', 'nodejs'],
},
// Recording

View file

@ -100,6 +100,7 @@ describe('filterByAgent', () => {
it('nodejs', () => {
expect(getSettingKeysForAgent('nodejs')).toEqual([
'capture_body',
'log_level',
'transaction_max_spans',
'transaction_sample_rate',
]);