Support Ownership gem and other improvements
Added
-
Add support for the Ownership gem, which is used to mark different segments of the application as owned by specific teams.
The AppSignal sample will be tagged with the given owner:
Shellclass OrdersController < ApplicationController owner :logistics # Transactions for requests handled by this controller will be tagged # in AppSignal with the "owner" tag set to "logistics" endIf several owners are set within the same transaction, the last owner will take precedence. If an error is reported in the transaction, the owner tag will be set to the owner that was set when the error was raised.
Set the
ownership_set_namespaceconfiguration option totrueto also set the AppSignal sample's namespace to the owner. Note that doing so will cause existing performance and error incidents to be re-created with the new namespace.Set the
instrument_ownershipconfiguration option tofalseto disable the integration with the Ownership gem.
Changed
- Do not report
SystemExiterrors from our Rake integration. - Do not report
SignalExceptionerrors from our Rake integration.
Fixed
- Fix deprecation warnings when building the AppSignal gem's native extension on Ruby 3.4, by porting the extension to use the TypedData API.
View the Ruby gem v4.3.3 changelog for more information.