-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(telemetry): fix flaky tests part 2 (#11052)
Improves the reliability of instrumentation telemetry tests by: - Providing a mechanism to filter out telemetry events with unexpected runtime IDs in TelemetryTestSession.get_events(..). This enhances control over which telemetry events are captured in tests - Fixing the flaky `test_update_dependencies_event_when_disabled` by ensuring DD_TELEMETRY_DEPENDENCY_COLLECTION_ENABLED=False is set. Previously, this test was run with default environment variables, which introduced flakiness. - Fixing the flaky `test_unhandled_integration_error` by avoiding assertions on the runtime ID of captured telemetry events. This assertion was a significant source of flakiness and was the main reason the subprocess parameter was added to TelemetryTestSession.get_events(..). A little unrelated but this PR also refactors the `test_app_started_event_configuration_override` to use _DD_INSTRUMENTATION_TELEMETRY_TESTS_FORCE_APP_STARTED instead of manually starting the telemetry writer. - Note: Importing from ddtrace.internal.telemetry previously created the symbol_db and dynamic_instrumentation objects as a side effect. Since we have removed this side effect, we must create these configurations in the test. - I can move this to another PR but this seems like a minor test change that's not worth the effort. ## Checklist - [x] PR author has checked that all the criteria below are met - The PR description includes an overview of the change - The PR description articulates the motivation for the change - The change includes tests OR the PR description describes a testing strategy - The PR description notes risks associated with the change, if any - Newly-added code is easy to change - The change follows the [library release note guidelines](https://ddtrace.readthedocs.io/en/stable/releasenotes.html) - The change includes or references documentation updates if necessary - Backport labels are set (if [applicable](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)) ## Reviewer Checklist - [ ] Reviewer has checked that all the criteria below are met - Title is accurate - All changes are related to the pull request's stated goal - Avoids breaking [API](https://ddtrace.readthedocs.io/en/stable/versioning.html#interfaces) changes - Testing strategy adequately addresses listed risks - Newly-added code is easy to change - Release note makes sense to a user of the library - If necessary, author has acknowledged and discussed the performance implications of this PR as reported in the benchmarks PR comment - Backport labels are set in a manner that is consistent with the [release branch maintenance policy](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)
- Loading branch information
Showing
5 changed files
with
35 additions
and
41 deletions.
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
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