We've just released version 0.11.13
of our AppSignal gem with tons of changes.
Padrino support
Padrino is a Ruby framework built upon the Sinatra web library. Sinatra is a DSL for creating simple web applications in Ruby. Padrino was created to make it fun and easy to code more advanced web applications while still adhering to the spirit that makes Sinatra great!
Want to monitor Padrino? Here's the documentation for integrating AppSignal with Padrino.
Rake task monitoring
(Rails) Rake task monitoring is now officially supported by our gem.
Just add require 'appsignal/integrations/rake'
to your Rakefile in the Rails root, and any exception in the task will be caught and sent to AppSignal. Find out more about Rake task monitoring in our docs.
HTTP Proxy support
The AppSignal gem is now able to send its data through a proxy by adding http_proxy
to your appsignal.yml
configuration file, eg:
1 development:
2 <<: *defaults
3 active: true
4 http_proxy: "http://10.10.10.10:8888"
Many thanks to Bruno Alvares da Costa for the Pull Request.
Various other fixes/improvements
Besides these new features, we've fixed some bugs:
- Configure Net::HTTP to only use TLS
- Don't send queue if there is no content
- Don't retry transmission when response code is 400 (no content)
- Display warning message when attempting to send a non-exception to
send_exception
- Fix Capistrano 2 detection
- Fix issue with the Sinatra integration attempting to attach an exception to a transaction that doesn't exist
As always, you can find the AppSignal gem at RubyGems.