Sha256: e9cac8af14dd2b74b824fbda4816ffa5aa7d71a5d046a3175fbe017532124618
Contents?: true
Size: 967 Bytes
Versions: 5
Compression:
Stored size: 967 Bytes
Contents
# frozen_string_literal: true require_relative '../../../../tracing/contrib/configuration/settings' require_relative '../ext' module Datadog module CI module Contrib module Cucumber module Configuration # Custom settings for the Cucumber integration # TODO: mark as `@public_api` when GA class Settings < Datadog::Tracing::Contrib::Configuration::Settings option :enabled do |o| o.default { env_to_bool(Ext::ENV_ENABLED, true) } o.lazy end option :service_name do |o| o.default { Datadog.configuration.service_without_fallback || Ext::SERVICE_NAME } o.lazy end option :operation_name do |o| o.default { ENV.key?(Ext::ENV_OPERATION_NAME) ? ENV[Ext::ENV_OPERATION_NAME] : Ext::OPERATION_NAME } o.lazy end end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems