newrelic_rpm 6.12.0.367 → 6.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE/bug_report.md +31 -0
  3. data/.github/ISSUE_TEMPLATE/config.yml +5 -0
  4. data/.github/ISSUE_TEMPLATE/feature_request.md +24 -0
  5. data/.github/actions/annotate/README.md +79 -0
  6. data/.github/actions/annotate/action.yml +6 -0
  7. data/.github/actions/annotate/dist/index.js +433 -0
  8. data/.github/actions/annotate/index.js +25 -0
  9. data/.github/actions/annotate/package-lock.json +172 -0
  10. data/.github/actions/annotate/package.json +30 -0
  11. data/.github/actions/annotate/pre-commit +5 -0
  12. data/.github/actions/build-ruby/README.md +79 -0
  13. data/.github/actions/build-ruby/action.yml +15 -0
  14. data/.github/actions/build-ruby/dist/index.js +52683 -0
  15. data/.github/actions/build-ruby/index.js +514 -0
  16. data/.github/actions/build-ruby/package-lock.json +581 -0
  17. data/.github/actions/build-ruby/package.json +32 -0
  18. data/.github/actions/build-ruby/pre-commit +5 -0
  19. data/.github/pull_request_template.md +16 -0
  20. data/.github/workflows/ci.yml +212 -0
  21. data/.github/workflows/pr_review_checklist.yml +22 -0
  22. data/.github/workflows/release.yml +78 -0
  23. data/.github/workflows/scripts/rubygems-authenticate.py +13 -0
  24. data/.github/workflows/scripts/rubygems-publish.rb +32 -0
  25. data/.github/workflows/snyk.yml +27 -0
  26. data/.github/workflows/stale.yml +21 -0
  27. data/.gitignore +3 -0
  28. data/CHANGELOG.md +81 -8
  29. data/CONTRIBUTING.md +54 -11
  30. data/README.md +40 -16
  31. data/ROADMAP.md +24 -0
  32. data/lib/new_relic/agent.rb +2 -4
  33. data/lib/new_relic/agent/agent.rb +4 -0
  34. data/lib/new_relic/agent/http_clients/uri_util.rb +7 -7
  35. data/lib/new_relic/agent/instrumentation/rake.rb +1 -0
  36. data/lib/new_relic/agent/new_relic_service.rb +25 -3
  37. data/lib/new_relic/agent/transaction/external_request_segment.rb +2 -2
  38. data/lib/new_relic/agent/transaction/segment.rb +9 -5
  39. data/lib/new_relic/version.rb +1 -1
  40. data/lib/tasks/multiverse.rb +9 -0
  41. data/newrelic_rpm.gemspec +0 -1
  42. data/test/agent_helper.rb +6 -0
  43. metadata +29 -8
  44. data/.travis.yml +0 -240
  45. data/CODE_OF_CONDUCT.md +0 -46
  46. data/lib/new_relic/metrics.rb +0 -13
@@ -1,13 +0,0 @@
1
- # encoding: utf-8
2
- # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
-
5
- module NewRelic
6
- module Metrics
7
- CONTROLLER = "Controller"
8
- DISPATCHER = "HttpDispatcher"
9
- ACTIVE_RECORD = "ActiveRecord"
10
- USER_TIME = "CPU/User Time"
11
- MEMORY = "Memory/Physical"
12
- end
13
- end