Upgrading
To check if there are updates for the appoptics_apm gem:
- Display installed version:
gem list appoptics_apm
. - Check for the latest version:
gem search appoptics_apm --remote
. - Upgrade:
bundle update appoptics_apm
orgem update appoptics_apm
.
Check appoptics_apm
on RubyGems for the newest version.
See Release Notes for changes.
Upgrading from TraceView
There are three major changes:
- The gem is now called
appoptics_apm
, please make changes accordingly. - The Service Key (API Token) is now configured as an environment variable
APPOPTICS_SERVICE_KEY
, and not read from a config file anymore. - The class name for the API methods has changed from
TraceView::API
toAppOpticsAPM::SDK
. The SDK methods have been reduced to the methods documented here. Use oflog_*
methods is discouraged because they can lead to broken traces, but they are still available asAppOpticsAPM::API.log_*
methods.