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

Instance Method Details

#payloadObject



40
41
42
43
44
45
46
47
48
# File 'lib/datadog/core/telemetry/event.rb', line 40

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

#typeObject



36
37
38
# File 'lib/datadog/core/telemetry/event.rb', line 36

def type
  'app-started'
end