-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3718 from DataDog/anmarchenko/telemetry_send_even…
…ts_in_background_thread [SDTEST-409] Send telemetry events in background thread to remove blocking HTTP calls from critical path
- Loading branch information
Showing
25 changed files
with
1,152 additions
and
595 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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative 'emitter' | ||
require_relative 'event' | ||
require_relative 'worker' | ||
require_relative '../utils/forking' | ||
|
||
module Datadog | ||
module Core | ||
module Telemetry | ||
# Telemetry entrypoint, coordinates sending telemetry events at various points in app lifecycle. | ||
class Component | ||
attr_reader :enabled | ||
|
||
include Core::Utils::Forking | ||
|
||
# @param enabled [Boolean] Determines whether telemetry events should be sent to the API | ||
# @param heartbeat_interval_seconds [Float] How frequently heartbeats will be reported, in seconds. | ||
# @param [Boolean] dependency_collection Whether to send the `app-dependencies-loaded` event | ||
def initialize(heartbeat_interval_seconds:, dependency_collection:, enabled: true) | ||
@enabled = enabled | ||
@stopped = false | ||
|
||
@worker = Telemetry::Worker.new( | ||
enabled: @enabled, | ||
heartbeat_interval_seconds: heartbeat_interval_seconds, | ||
emitter: Emitter.new, | ||
dependency_collection: dependency_collection | ||
) | ||
@worker.start | ||
end | ||
|
||
def disable! | ||
@enabled = false | ||
@worker.enabled = false | ||
end | ||
|
||
def stop! | ||
return if @stopped | ||
|
||
@worker.stop(true) | ||
@stopped = true | ||
end | ||
|
||
def emit_closing! | ||
return if !@enabled || forked? | ||
|
||
@worker.enqueue(Event::AppClosing.new) | ||
end | ||
|
||
def integrations_change! | ||
return if !@enabled || forked? | ||
|
||
@worker.enqueue(Event::AppIntegrationsChange.new) | ||
end | ||
|
||
# Report configuration changes caused by Remote Configuration. | ||
def client_configuration_change!(changes) | ||
return if !@enabled || forked? | ||
|
||
@worker.enqueue(Event::AppClientConfigurationChange.new(changes, 'remote_config')) | ||
end | ||
end | ||
end | ||
end | ||
end |
This file was deleted.
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
Oops, something went wrong.