Uninstall the agent - Rails
To uninstall the Atatus Ruby agent, follow the below steps.
Remove the
gem 'atatus'
from the Gemfile.Delete the
config/atatus.yml
file from your config directory.Run the
bundle install
.Restart your Rails server after the uninstall step completes.
Uninstall the agent - Sinatra
To uninstall the Atatus Ruby agent, follow the below steps.
Remove the
gem 'atatus'
from your Gemfile.From the
config.ru
file present in your root directory, remove the following.require 'atatus' use Atatus::Middleware Atatus.start()
Run the
bundle install
.Restart your Sinatra server after the uninstall step completes.