Class: Sentry::Rails::Tracing::ActiveStorageSubscriber
- Inherits:
-
AbstractSubscriber
- Object
- AbstractSubscriber
- Sentry::Rails::Tracing::ActiveStorageSubscriber
- Defined in:
- lib/sentry/rails/tracing/active_storage_subscriber.rb
Constant Summary collapse
- EVENT_NAMES =
%w[ service_upload.active_storage service_download.active_storage service_streaming_download.active_storage service_download_chunk.active_storage service_delete.active_storage service_delete_prefixed.active_storage service_exist.active_storage service_url.active_storage service_mirror.active_storage service_update_metadata.active_storage preview.active_storage analyze.active_storage ].freeze
- SPAN_ORIGIN =
"auto.file.rails"
Class Method Summary collapse
Methods inherited from AbstractSubscriber
record_on_current_span, #subscribe_to_event, unsubscribe!
Class Method Details
.subscribe! ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/sentry/rails/tracing/active_storage_subscriber.rb', line 26 def self.subscribe! subscribe_to_event(EVENT_NAMES) do |event_name, duration, payload| record_on_current_span( op: "file.#{event_name}", origin: SPAN_ORIGIN, start_timestamp: payload[START_TIMESTAMP_NAME], description: payload[:service], duration: duration ) do |span| payload.each do |key, value| span.set_data(key, value) unless key == START_TIMESTAMP_NAME end end end end |