Active Support is a part of core Rails that provides Ruby language extensions, utilities, and other things. One of the things it includes is an instrumentation API that can be used inside an application to measure certain actions that occur within Ruby code, such as that inside a Rails application or the framework itself. It is not limited to Rails, however. It can be used independently in other Ruby scripts if it is so desired.
In this guide, you will learn how to use the instrumentation API inside of Active Support to measure events inside of Rails and other Ruby code.
After reading this guide, you will know:
What instrumentation can provide.
How to add a subscriber to a hook.
The hooks inside the Rails framework for instrumentation.
How to build a custom instrumentation implementation.
Introduction to Instrumentation
The instrumentation API provided by Active Support allows developers to provide hooks which other developers may hook into. There are several of these within the Rails framework. With this API, developers can choose to be notified when certain events occur inside their application or another piece of Ruby code.
For example, there is a hook provided within Active Record that is called every time Active Record uses an SQL query on a database. This hook could be subscribed to, and used to track the number of queries during a certain action. There’s another hook around the processing of an action of a controller. This could be used, for instance, to track how long a specific action has taken.
You are even able to create your own events inside your application which you can later subscribe to.
Subscribing to an Event
Subscribing to an event is easy. Use ActiveSupport::Notifications.subscribe with a block to listen to any notification.
The block receives the following arguments:
The name of the event
Time when it started
Time when it finished
A unique ID for the instrumenter that fired the event
The payload (described in future sections)
ActiveSupport::Notifications.subscribe"process_action.action_controller"do|name,started,finished,unique_id,data|# your own custom stuffRails.logger.info"#{name} Received! (started: #{started}, finished: #{finished})"# process_action.action_controller Received (started: 2019-05-05 13:43:57 -0800, finished: 2019-05-05 13:43:58 -0800)end
If you are concerned about the accuracy of started and finished to compute a precise elapsed time then use ActiveSupport::Notifications.monotonic_subscribe. The given block would receive the same arguments as above but the started and finished will have values with an accurate monotonic time instead of wall-clock time.
ActiveSupport::Notifications.monotonic_subscribe"process_action.action_controller"do|name,started,finished,unique_id,data|# your own custom stuffRails.logger.info"#{name} Received! (started: #{started}, finished: #{finished})"# process_action.action_controller Received (started: 1560978.425334, finished: 1560979.429234)end
Defining all those block arguments each time can be tedious. You can easily create an ActiveSupport::Notifications::Event from block arguments like this:
ActiveSupport::Notifications.subscribe"process_action.action_controller"do|*args|event=ActiveSupport::Notifications::Event.new*argsevent.name# => "process_action.action_controller"event.duration# => 10 (in milliseconds)event.payload# => {:extra=>information}Rails.logger.info"#{event} Received!"end
You may also pass a block that accepts only one argument, and it will receive an event object:
ActiveSupport::Notifications.subscribe"process_action.action_controller"do|event|event.name# => "process_action.action_controller"event.duration# => 10 (in milliseconds)event.payload# => {:extra=>information}Rails.logger.info"#{event} Received!"end
Most times you only care about the data itself. Here is a shortcut to just get the data.
You may also subscribe to events matching a regular expression. This enables you to subscribe to multiple events at once. Here’s how to subscribe to everything from ActionController.
ActiveSupport::Notifications.subscribe/action_controller/do|*args|# inspect all ActionController eventsend
Rails framework hooks
Within the Ruby on Rails framework, there are a number of hooks provided for common events. These are detailed below.
Action Controller
write_fragment.action_controller
Key
Value
:key
The complete key
{key: 'posts/1-dashboard-view'}
read_fragment.action_controller
Key
Value
:key
The complete key
{key: 'posts/1-dashboard-view'}
expire_fragment.action_controller
Key
Value
:key
The complete key
{key: 'posts/1-dashboard-view'}
exist_fragment?.action_controller
Key
Value
:key
The complete key
{key: 'posts/1-dashboard-view'}
start_processing.action_controller
Key
Value
:controller
The controller name
:action
The action
:params
Hash of request parameters without any filtered parameter
Path to loaded initializer from config/initializers
Rails
deprecation.rails
Key
Value
:message
The deprecation warning
:callstack
Where the deprecation came from
Exceptions
If an exception happens during any instrumentation the payload will include information about it.
Key
Value
:exception
An array of two elements. Exception class name and the message
:exception_object
The exception object
Creating Custom Events
Adding your own events is easy as well. ActiveSupport::Notifications will take care of all the heavy lifting for you. Simply call instrument with a name, payload and a block. The notification will be sent after the block returns. ActiveSupport will generate the start and end times and add the instrumenter’s unique ID. All data passed into the instrument call will make it into the payload.
Here’s an example:
ActiveSupport::Notifications.instrument"my.custom.event",this: :datado# do your custom stuff hereend
You also have the option to call instrument without passing a block. This lets you leverage the instrumentation infrastructure for other messaging uses.
You should follow Rails conventions when defining your own events. The format is: event.library. If your application is sending Tweets, you should create an event named tweet.twitter.