Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump newrelic_rpm from 9.1.0 to 9.5.0 #1296

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 13, 2023

Bumps newrelic_rpm from 9.1.0 to 9.5.0.

Release notes

Sourced from newrelic_rpm's releases.

9.5.0

No release notes provided.

9.5.0-pre

No release notes provided.

9.4.2

No release notes provided.

9.4.2-pre

No release notes provided.

9.4.1

No release notes provided.

9.4.1-pre

No release notes provided.

9.4.0

No release notes provided.

9.4.0-pre

No release notes provided.

9.3.1

No release notes provided.

9.3.1-pre

No release notes provided.

9.3.0

No release notes provided.

9.3.0-pre

No release notes provided.

9.2.2

No release notes provided.

9.2.2-pre

CHANGELOG

9.2.1

No release notes provided.

9.2.1-pre

No release notes provided.

9.2.0

No release notes provided.

... (truncated)

Changelog

Sourced from newrelic_rpm's changelog.

v9.5.0

Version 9.5.0 introduces Stripe instrumentation, allows the agent to record additional response information on a transaction when middleware instrumentation is disabled, introduces new :'sidekiq.args.include' and :'sidekiq.args.exclude: configuration options to permit capturing only certain Sidekiq job arguments, updates Elasticsearch datastore instance metrics, and fixes a bug in NewRelic::Rack::AgentHooks.needed?.

  • Feature: Add Stripe instrumentation

    Stripe calls are now automatically instrumented. Additionally, new :'stripe.user_data.include' and :'stripe.user_data.exclude' configuration options permit capturing custom user_data key-value pairs that can be stored in Stripe events. No user_data key-value pairs are captured by default. The agent currently supports Stripe versions 5.38.0+. PR#2180

  • Feature: Report transaction HTTP status codes when middleware instrumentation is disabled

    Previously, when disable_middleware_instrumentation was set to true, the agent would not record the value of the response code or content type on the transaction. This was due to the possibility that a middleware could alter the response, which would not be captured by the agent when the middleware instrumentation was disabled. However, based on customer feedback, the agent will now report the HTTP status code and content type on a transaction when middleware instrumentation is disabled. PR#2175

  • Feature: Permit capturing only certain Sidekiq job arguments

    New :'sidekiq.args.include' and :'sidekiq.args.exclude' configuration options have been introduced to permit fine grained control over which Sidekiq job arguments (args) are reported to New Relic. By default, no Sidekiq args are reported. To report any Sidekiq options, the :'attributes.include' array must include the string 'jobs.sidekiq.args.*'. With that string in place, all arguments will be reported unless one or more of the new include/exclude options are used. The :'sidekiq.args.include' option can be set to an array of strings. Each of those strings will be passed to Regexp.new and collectively serve as an allowlist for desired args. For job arguments that are hashes, if a hash's key matches one of the include patterns, then both the key and its corresponding value will be included. For scalar arguments, the string representation of the scalar will need to match one of the include patterns to be captured. The :'sidekiq.args.exclude' option works similarly. It can be set to an array of strings that will each be passed to Regexp.new to create patterns. These patterns will collectively serve as a denylist for unwanted job args. Any hash key, hash value, or scalar that matches an exclude pattern will be excluded (not sent to New Relic). PR#2177

    newrelic.yml examples:

    Any string in the :'sidekiq.args.include' or :'sidekiq.args.exclude' arrays will be turned into a regular expression. Knowledge of Ruby regular expression support can be leveraged but is not required. If regular expression syntax is not used, inexact matches will be performed and the string "Fortune" will match both "Fortune 500" and "Fortune and Glory". For exact matches, use regular expression anchors.

    # Include any argument whose string representation matches either "apple" or "banana"
    # The "apple" pattern will match both "green apple" and "red apple"
    sidekiq.args.include:
      - apple
      - banana
    Exclude any arguments that match either "grape", "orange", or "pear"
    sidekiq.args.exclude:
    
    grape
    orange
    pear
    
    Exclude any argument that is a 9 digit number
    sidekiq.args.exclude:
    
    '\d{9}'
    
    Include anything that starts with "blue" but exclude anything that ends in "green"
    sidekiq.args.include
    
    '^blue'
    
    sidekiq.args.exclude
    
    'green$'
  • Bugfix: Update Elasticsearch datastore instance metric to use port instead of path

    Previously, the Elasticsearch datastore instance metric (Datastore/instance/Elasticsearch/<host>/*) used the path as the final value. This caused a metrics grouping issue for some users, as every document ID created a unique metric. Now, the datastore instance metric has been updated to use the port as the final value. This also has the benefit of being more accurate for datastore instance metrics, as this port is directly associated with the already listed host.

  • Bugfix: Resolve inverted logic of NewRelic::Rack::AgentHooks.needed?

  • ... (truncated)

    Commits
    • 88f6288 Merge pull request #2207 from newrelic/config-docs-pr-title
    • c14a5a8 Update title for config docs PR
    • d834113 Merge pull request #2201 from newrelic/prerelease_updates_9.5.0-pre
    • 8322c53 bump version
    • 0cfb5a4 Merge pull request #2182 from newrelic/elasticsearch-port
    • 55a092a Add changelog entry and update spacing
    • ac3d55b Merge branch 'dev' into elasticsearch-port
    • efb6eb1 Merge pull request #2189 from newrelic/you_rang❓
    • 942607b Merge pull request #2180 from newrelic/stripe_instrumentation
    • c817989 Update CHANGELOG.md
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

    Bumps [newrelic_rpm](https://github.com/newrelic/newrelic-ruby-agent) from 9.1.0 to 9.5.0.
    - [Release notes](https://github.com/newrelic/newrelic-ruby-agent/releases)
    - [Changelog](https://github.com/newrelic/newrelic-ruby-agent/blob/dev/CHANGELOG.md)
    - [Commits](newrelic/newrelic-ruby-agent@9.1.0...9.5.0)
    
    ---
    updated-dependencies:
    - dependency-name: newrelic_rpm
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Sep 13, 2023
    @dependabot @github
    Copy link
    Contributor Author

    dependabot bot commented on behalf of github Oct 30, 2023

    Superseded by #1309.

    @dependabot dependabot bot closed this Oct 30, 2023
    @dependabot dependabot bot deleted the dependabot/bundler/newrelic_rpm-9.5.0 branch October 30, 2023 23:49
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    None yet

    0 participants