27 lines
875 B
Ruby
27 lines
875 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ProductAnalyticsTracking
|
|
include Gitlab::Tracking::Helpers
|
|
include RedisTracking
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
def track_event(*controller_actions, name:, conditions: nil, destinations: [:redis_hll], &block)
|
|
custom_conditions = [:trackable_html_request?, *conditions]
|
|
|
|
after_action only: controller_actions, if: custom_conditions do
|
|
route_events_to(destinations, name, &block)
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def route_events_to(destinations, name, &block)
|
|
track_unique_redis_hll_event(name, &block) if destinations.include?(:redis_hll)
|
|
|
|
if destinations.include?(:snowplow) && Feature.enabled?(:route_hll_to_snowplow, tracking_namespace_source)
|
|
Gitlab::Tracking.event(self.class.to_s, name, namespace: tracking_namespace_source, user: current_user)
|
|
end
|
|
end
|
|
end
|