Class: Datadog::Core::Telemetry::Event::Base
- Inherits:
-
Object
- Object
- Datadog::Core::Telemetry::Event::Base
- Defined in:
- lib/datadog/core/telemetry/event.rb
Overview
Base class for all Telemetry V2 events.
Direct Known Subclasses
AppClientConfigurationChange, AppClosing, AppDependenciesLoaded, AppHeartbeat, AppIntegrationsChange, AppStarted
Instance Method Summary collapse
-
#payload(seq_id) ⇒ Object
The JSON payload for the event.
-
#type ⇒ Object
The type of the event.
Instance Method Details
#payload(seq_id) ⇒ Object
The JSON payload for the event.
16 17 18 |
# File 'lib/datadog/core/telemetry/event.rb', line 16 def payload(seq_id) {} end |
#type ⇒ Object
The type of the event. It must be one of the stings defined in the Telemetry V2 specification for event names.
12 |
# File 'lib/datadog/core/telemetry/event.rb', line 12 def type; end |