From c4a6ebe283cce69e8364b94811d95b156002ccb4 Mon Sep 17 00:00:00 2001 From: Kayla Reopelle Date: Thu, 16 Sep 2021 11:49:48 -0700 Subject: [PATCH] Update text --- CHANGELOG.md | 6 +++--- newrelic.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b196eafe1..0d9708cc2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,7 +33,7 @@ * **Cross Application is now deprecated, and disabled by default** - [Distributed tracing](https://docs.newrelic.com/docs/distributed-tracing/enable-configure/language-agents-enable-distributed-tracing/) is replacing [cross application tracing](https://docs.newrelic.com/docs/agents/ruby-agent/features/cross-application-tracing-ruby/) as the default means of tracing between services. To continue using it, enable it with `cross_application_tracer.enabled = True` and `distributed_tracing.enabled = False` + [Distributed tracing](https://docs.newrelic.com/docs/distributed-tracing/enable-configure/language-agents-enable-distributed-tracing/) is replacing [cross application tracing](https://docs.newrelic.com/docs/agents/ruby-agent/features/cross-application-tracing-ruby/) as the default means of tracing between services. To continue using it, enable it with `cross_application_tracer.enabled: true` and `distributed_tracing.enabled: false` * **Update configuration option default value for `span_events.max_samples_stored` from 1000 to 2000** @@ -46,9 +46,9 @@ * **Remove Ruby 2.0 required kwarg compatibility checks** Our agent has code that provides compatibility for required keyword arguments in Ruby versions below 2.1. Since the agent now only supports Ruby 2.2+, this code is no longer required. - + * **Replace Time.now with Process.clock_gettime** - + Calls to `Time.now` have been replaced with calls to `Process.clock_gettime` to leverage the system's built-in clocks for elapsed time (`Process::CLOCK_MONOTONIC`) and wall-clock time (`Process::CLOCK_REALTIME`). This results in fewer object allocations, more accurate elapsed time records, and enhanced performance. Thanks to @sdemjanenko and @viraptor for advocating for this change! * **Updated generated default newrelic.yml** diff --git a/newrelic.yml b/newrelic.yml index 2c3aa0ad0c..2de45868a1 100644 --- a/newrelic.yml +++ b/newrelic.yml @@ -486,7 +486,7 @@ common: &default_settings # span_events_attributes.enabled: true # Defines the maximum number of span events reported from a single harvest. -# This can be any value between 2000 and 10,000. Increasing this value may impact +# The maximum value is 10000. Increasing this value may impact # memory usage. # span_events_max_samples_stored: 2000