class ActiveModel::Serializer

def instrument(name, payload = {}, &block)

The event name is: name.class_name.serializer
Use ActiveSupport::Notifications to send events to external systems.
def instrument(name, payload = {}, &block)
  event_name = INSTRUMENT[name]
  ActiveSupport::Notifications.instrument(event_name, payload, &block)
end