-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include tracing information in the Kibana logs #112973
Merged
mshustov
merged 40 commits into
elastic:main
from
mshustov:issue-102704-change-apm-default
Nov 11, 2021
Merged
Changes from 23 commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
75bd5ee
change APM nodejs agent default
mshustov bdc9928
Merge branch 'master' into issue-102704-change-apm-default
mshustov 2b2e5cd
Merge branch 'master' into issue-102704-change-apm-default
mshustov a030d68
emit trace IDs into the logs
mshustov cc1598c
Merge branch 'master' into issue-102704-change-apm-default
mshustov 5d823c9
Merge branch 'master' into issue-102704-change-apm-default
mshustov 99d2c40
use ELASTIC_APM_DISABLE_SEND to keep APM agent active but disable sen…
mshustov 34e7914
send data whenver active is set to "true"
mshustov 07a133b
Merge branch 'master' into issue-102704-change-apm-default
mshustov 16610f1
update tests
mshustov 8f288ca
keep APM agent active. control disableSend instead
mshustov 4905c34
Merge branch 'master' into issue-102704-change-apm-default
mshustov 861efdb
update snapshot tests
mshustov b7acb1a
add debug logging
mshustov 8b17412
REMOVE me. log path to the agent
mshustov 1972227
init APM agent explicitly in test plugin. it uses another package ins…
mshustov 1887300
REMOVE me. create transaction explicitly
mshustov 2e89205
increase timeout setting for the test
mshustov c3a167e
Merge branch 'master' into issue-102704-change-apm-default
mshustov 464b3e2
refactor tests
mshustov 2b4ff4b
remove debug logs
mshustov cdf2d30
remove explicit transaction creation
mshustov ac450a0
Revert "remove explicit transaction creation"
mshustov 0a909b2
Merge branch 'master' into issue-102704-change-apm-default
mshustov b7a0127
Merge remote-tracking branch 'origin/issue-102704-change-apm-default'…
mshustov 8317597
Merge branch 'master' into issue-102704-change-apm-default
mshustov 16cfd22
Merge branch 'master' into issue-102704-change-apm-default
mshustov 39ff4a2
Merge branch 'main' into issue-102704-change-apm-default
mshustov 626cbe0
Merge branch 'main' into issue-102704-change-apm-default
mshustov 95e4199
Merge branch 'main' into issue-102704-change-apm-default
mshustov 73272b5
point to apm nodejs agent commit temporary until a new version is rel…
mshustov c25a31b
migrate from disableSend to contextPropagationOnly
mshustov 62dda4f
TO DISCUSS. what if we enforce contextPropagationOnly to be configure…
mshustov bb6251b
Revert "TO DISCUSS. what if we enforce contextPropagationOnly to be c…
mshustov e2067e5
Merge branch 'main' into issue-102704-change-apm-default
mshustov cbd94bd
bump to version with fix
mshustov 6417b5b
Merge branch 'main' into issue-102704-change-apm-default
mshustov bf121b0
commit using @elastic.co
c611f73
Merge branch 'main' into issue-102704-change-apm-default
kibanamachine 4b025d2
Merge branch 'main' into issue-102704-change-apm-default
kibanamachine File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
src/core/server/logging/__snapshots__/logging_system.test.ts.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
src/core/server/logging/layouts/__snapshots__/json_layout.test.ts.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
apm agent is always active, we use
disableSend
flag to enable sending data to the APM server