Skip to content

Commit

Permalink
Update text
Browse files Browse the repository at this point in the history
  • Loading branch information
kaylareopelle committed Sep 16, 2021
1 parent 941978b commit c4a6ebe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Expand Up @@ -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**

Expand All @@ -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**
Expand Down
2 changes: 1 addition & 1 deletion newrelic.yml
Expand Up @@ -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

Expand Down

0 comments on commit c4a6ebe

Please sign in to comment.