Class: Datadog::Core::Telemetry::Event::AppStarted

Inherits:
Base
  • Object
show all
Defined in:
lib/datadog/core/telemetry/event.rb

Overview

Telemetry class for the ‘app-started’ event

Instance Method Summary collapse

Methods inherited from Base

#==, #hash

Instance Method Details

#payloadObject



56
57
58
59
60
61
62
63
64
# File 'lib/datadog/core/telemetry/event.rb', line 56

def payload
  {
    products: products,
    configuration: configuration,
    install_signature: install_signature,
    # DEV: Not implemented yet
    # error: error, # Start-up errors
  }
end

#typeObject



52
53
54
# File 'lib/datadog/core/telemetry/event.rb', line 52

def type
  'app-started'
end