diff --git a/lib/datadog/core/configuration/components.rb b/lib/datadog/core/configuration/components.rb index 34792c7ba13..6228f495e9e 100644 --- a/lib/datadog/core/configuration/components.rb +++ b/lib/datadog/core/configuration/components.rb @@ -351,8 +351,9 @@ def should_enable_gc_profiling?(settings) def print_new_profiler_warnings if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.6') Datadog.logger.warn( - 'New Ruby profiler has been force-enabled. This feature is in alpha state. Please report any issues ' \ - 'you run into via !' + 'New Ruby profiler has been force-enabled. This feature is in beta state. We do not yet recommend ' \ + 'running it in production environments. Please report any issues ' \ + 'you run into to Datadog support or via !' ) else # For more details on the issue, see the "BIG Issue" comment on `gvl_owner` function in @@ -360,7 +361,8 @@ def print_new_profiler_warnings Datadog.logger.warn( 'New Ruby profiler has been force-enabled on a legacy Ruby version (< 2.6). This is not recommended in ' \ 'production environments, as due to limitations in Ruby APIs, we suspect it may lead to crashes in very ' \ - 'rare situations. Please report any issues you run into via !' + 'rare situations. Please report any issues you run into to Datadog support or ' \ + 'via !' ) end end diff --git a/spec/datadog/core/configuration/components_spec.rb b/spec/datadog/core/configuration/components_spec.rb index 9b03d499b4a..f27e995ab53 100644 --- a/spec/datadog/core/configuration/components_spec.rb +++ b/spec/datadog/core/configuration/components_spec.rb @@ -1043,7 +1043,7 @@ it 'logs a warning message mentioning that profiler has been force-enabled' do expect(Datadog.logger).to receive(:warn).with( - /New Ruby profiler has been force-enabled. This feature is in alpha state/ + /New Ruby profiler has been force-enabled. This feature is in beta state/ ) build_profiler