debian-mirror-gitlab/app/controllers/concerns/product_analytics_tracking.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

94 lines
3.5 KiB
Ruby
Raw Normal View History

2022-05-07 20:08:51 +05:30
# frozen_string_literal: true
module ProductAnalyticsTracking
include Gitlab::Tracking::Helpers
include RedisTracking
extend ActiveSupport::Concern
class_methods do
2023-01-13 00:05:48 +05:30
# TODO: Remove once all the events are migrated to #track_custom_event
# during https://gitlab.com/groups/gitlab-org/-/epics/8641
2022-05-07 20:08:51 +05:30
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
2022-08-27 11:52:29 +05:30
def track_custom_event(*controller_actions, name:, conditions: nil, action:, label:, destinations: [:redis_hll], &block)
custom_conditions = [:trackable_html_request?, *conditions]
after_action only: controller_actions, if: custom_conditions do
route_custom_events_to(destinations, name, action, label, &block)
end
end
2022-05-07 20:08:51 +05:30
end
private
def route_events_to(destinations, name, &block)
track_unique_redis_hll_event(name, &block) if destinations.include?(:redis_hll)
2022-07-23 23:45:48 +05:30
if destinations.include?(:snowplow) && event_enabled?(name)
2022-11-25 23:54:43 +05:30
Gitlab::Tracking.event(
self.class.to_s,
name,
namespace: tracking_namespace_source,
user: current_user,
context: [Gitlab::Tracking::ServicePingContext.new(data_source: :redis_hll, event: name).to_context]
)
2022-05-07 20:08:51 +05:30
end
end
2022-07-23 23:45:48 +05:30
2022-08-27 11:52:29 +05:30
def route_custom_events_to(destinations, name, action, label, &block)
track_unique_redis_hll_event(name, &block) if destinations.include?(:redis_hll)
return unless destinations.include?(:snowplow) && event_enabled?(name)
optional_arguments = {
namespace: tracking_namespace_source,
project: tracking_project_source
}.compact
Gitlab::Tracking.event(
self.class.to_s,
action,
user: current_user,
property: name,
label: label,
2022-11-25 23:54:43 +05:30
context: [Gitlab::Tracking::ServicePingContext.new(data_source: :redis_hll, event: name).to_context],
2022-08-27 11:52:29 +05:30
**optional_arguments
)
end
2022-07-23 23:45:48 +05:30
def event_enabled?(event)
events_to_ff = {
g_analytics_valuestream: :route_hll_to_snowplow,
2022-08-13 15:12:31 +05:30
i_search_paid: :route_hll_to_snowplow_phase2,
i_search_total: :route_hll_to_snowplow_phase2,
2022-08-27 11:52:29 +05:30
i_search_advanced: :route_hll_to_snowplow_phase2,
i_ecosystem_jira_service_list_issues: :route_hll_to_snowplow_phase2,
users_viewing_analytics_group_devops_adoption: :route_hll_to_snowplow_phase2,
i_analytics_dev_ops_adoption: :route_hll_to_snowplow_phase2,
i_analytics_dev_ops_score: :route_hll_to_snowplow_phase2,
p_analytics_merge_request: :route_hll_to_snowplow_phase2,
i_analytics_instance_statistics: :route_hll_to_snowplow_phase2,
2022-10-11 01:57:18 +05:30
g_analytics_contribution: :route_hll_to_snowplow_phase2,
p_analytics_pipelines: :route_hll_to_snowplow_phase2,
p_analytics_code_reviews: :route_hll_to_snowplow_phase2,
p_analytics_valuestream: :route_hll_to_snowplow_phase2,
p_analytics_insights: :route_hll_to_snowplow_phase2,
p_analytics_issues: :route_hll_to_snowplow_phase2,
p_analytics_repo: :route_hll_to_snowplow_phase2,
g_analytics_insights: :route_hll_to_snowplow_phase2,
g_analytics_issues: :route_hll_to_snowplow_phase2,
g_analytics_productivity: :route_hll_to_snowplow_phase2,
i_analytics_cohorts: :route_hll_to_snowplow_phase2
2022-07-23 23:45:48 +05:30
}
Feature.enabled?(events_to_ff[event.to_sym], tracking_namespace_source)
end
2022-05-07 20:08:51 +05:30
end