Skip to content

Commit

Permalink
[APM] enable 'log_level' for Go
Browse files Browse the repository at this point in the history
elastic/apm-agent-go#859 adds
central config support for 'log_level' to the Go agent,
so we can now enable it in the UI too.
  • Loading branch information
axw committed Dec 10, 2020
1 parent 0f40804 commit ac1c575
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export const generalSettings: RawSettingDefinition[] = [
{ text: 'critical', value: 'critical' },
{ text: 'off', value: 'off' },
],
includeAgents: ['dotnet', 'ruby', 'java', 'python', 'nodejs'],
includeAgents: ['dotnet', 'ruby', 'java', 'python', 'nodejs', 'go'],
},

// Recording
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ describe('filterByAgent', () => {
expect(getSettingKeysForAgent('go')).toEqual([
'capture_body',
'capture_headers',
'log_level',
'recording',
'sanitize_field_names',
'span_frames_min_duration',
Expand Down

0 comments on commit ac1c575

Please sign in to comment.