Class: Datadog::Core::Configuration::Settings::DSL::Profiling::Advanced::Endpoint
- Inherits:
-
Object
- Object
- Datadog::Core::Configuration::Settings::DSL::Profiling::Advanced::Endpoint
- Defined in:
- lib/datadog/core/configuration/settings.rb
Instance Method Summary collapse
-
#collection ⇒ Datadog::Core::Configuration::Settings::DSL::Profiling::Advanced::Endpoint::Collection
A configuration object.
Instance Method Details
#collection ⇒ Datadog::Core::Configuration::Settings::DSL::Profiling::Advanced::Endpoint::Collection
Returns a configuration object.
283 284 285 286 287 288 289 290 291 292 293 294 |
# File 'lib/datadog/core/configuration/settings.rb', line 283 settings :collection do # When using profiling together with tracing, this controls if endpoint names # are gathered and reported together with profiles. # # @default `DD_PROFILING_ENDPOINT_COLLECTION_ENABLED` environment variable, otherwise `true` # @return [Boolean] option :enabled do |o| o.env Profiling::Ext::ENV_ENDPOINT_COLLECTION_ENABLED o.default true o.type :bool end end |