newrelic_rpm 8.5.0 → 8.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +28 -1
  3. data/LICENSE +0 -6
  4. data/README.md +16 -18
  5. data/THIRD_PARTY_NOTICES.md +14 -199
  6. data/lib/new_relic/agent/agent.rb +21 -0
  7. data/lib/new_relic/agent/agent_logger.rb +7 -0
  8. data/lib/new_relic/agent/audit_logger.rb +4 -0
  9. data/lib/new_relic/agent/configuration/default_source.rb +72 -14
  10. data/lib/new_relic/agent/configuration/event_harvest_config.rb +4 -2
  11. data/lib/new_relic/agent/configuration/server_source.rb +1 -0
  12. data/lib/new_relic/agent/hostname.rb +16 -10
  13. data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +23 -0
  14. data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +20 -0
  15. data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +12 -0
  16. data/lib/new_relic/agent/instrumentation/active_support_logger.rb +24 -0
  17. data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
  18. data/lib/new_relic/agent/instrumentation/curb/prepend.rb +1 -1
  19. data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +18 -18
  20. data/lib/new_relic/agent/instrumentation/logger.rb +4 -3
  21. data/lib/new_relic/agent/linking_metadata.rb +45 -0
  22. data/lib/new_relic/agent/local_log_decorator.rb +37 -0
  23. data/lib/new_relic/agent/log_event_aggregator.rb +234 -0
  24. data/lib/new_relic/agent/log_priority.rb +20 -0
  25. data/lib/new_relic/agent/new_relic_service.rb +14 -7
  26. data/lib/new_relic/agent/pipe_service.rb +4 -0
  27. data/lib/new_relic/agent/samplers/memory_sampler.rb +6 -1
  28. data/lib/new_relic/agent/transaction.rb +11 -0
  29. data/lib/new_relic/agent.rb +4 -14
  30. data/lib/new_relic/helper.rb +40 -0
  31. data/lib/new_relic/version.rb +1 -1
  32. data/lib/tasks/config.rake +3 -3
  33. data/newrelic.yml +20 -4
  34. data/newrelic_rpm.gemspec +1 -0
  35. data/test/agent_helper.rb +18 -4
  36. metadata +24 -3
  37. data/ROADMAP.md +0 -24
data/ROADMAP.md DELETED
@@ -1,24 +0,0 @@
1
- # Ruby Agent Roadmap
2
-
3
- ## Product Vision
4
- The goal of the Ruby agent is to provide complete visibility into the health of your service. The agent provides metrics about the runtime health of your service and the process it runs in, and traces that show how specific requests are performing. It also provides information about the environment in which it is running, so you can identify issues with specific hosts, regions, deployments, and other facets.
5
-
6
- New Relic is moving toward OpenTelemetry. OpenTelemetry is a unified standard for service instrumentation. You will soon see an updated version of the agent that uses the OpenTelemetry SDK and auto-instrumentation as its foundation. OpenTelemetry will include a broad set of high-quality community-contributed instrumentation and a powerful vendor-neutral API for adding your own instrumentation.
7
-
8
-
9
- ## Roadmap
10
- ### Description
11
- This roadmap project is broken down into the following sections:
12
-
13
- - **Now**:
14
- - This section contains features that are currently in progress.
15
- - **Next**:
16
- - This section contains work planned within the next three months. These features may still be deprioritized and moved to Future.
17
- - **Future**:
18
- - This section is for ideas for future work that is aligned with the product vision and possible opportunities for community contribution. It contains a list of features that anyone can implement. No guarantees can be provided on if or when these features will be completed.
19
-
20
-
21
- **The roadmap project is found [here](https://github.com/orgs/newrelic/projects/12)**
22
-
23
- #### Disclaimers
24
- > This roadmap is subject to change at any time. Future items should not be considered commitments.