debian-mirror-gitlab/lib/gitlab/tracking.rb

45 lines
1.7 KiB
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
module Gitlab
module Tracking
SNOWPLOW_NAMESPACE = 'gl'
class << self
def enabled?
Gitlab::CurrentSettings.snowplow_enabled?
end
2021-04-29 21:17:54 +05:30
def event(category, action, label: nil, property: nil, value: nil, context: [], project: nil, user: nil, namespace: nil, **extra) # rubocop:disable Metrics/ParameterLists
contexts = [Tracking::StandardContext.new(project: project, user: user, namespace: namespace, **extra).to_context, *context]
2021-03-08 18:12:59 +05:30
2021-04-17 20:07:23 +05:30
snowplow.event(category, action, label: label, property: property, value: value, context: contexts)
product_analytics.event(category, action, label: label, property: property, value: value, context: contexts)
2021-06-08 01:23:25 +05:30
rescue StandardError => error
2021-04-29 21:17:54 +05:30
Gitlab::ErrorTracking.track_and_raise_for_dev_exception(error, snowplow_category: category, snowplow_action: action)
2019-12-21 20:55:43 +05:30
end
2019-12-04 20:38:33 +05:30
def snowplow_options(group)
additional_features = Feature.enabled?(:additional_snowplow_tracking, group)
{
namespace: SNOWPLOW_NAMESPACE,
hostname: Gitlab::CurrentSettings.snowplow_collector_hostname,
cookie_domain: Gitlab::CurrentSettings.snowplow_cookie_domain,
2019-12-26 22:10:19 +05:30
app_id: Gitlab::CurrentSettings.snowplow_app_id,
2019-12-04 20:38:33 +05:30
form_tracking: additional_features,
2020-11-24 15:15:51 +05:30
link_click_tracking: additional_features
2019-12-04 20:38:33 +05:30
}.transform_keys! { |key| key.to_s.camelize(:lower).to_sym }
end
private
def snowplow
2021-01-29 00:20:46 +05:30
@snowplow ||= Gitlab::Tracking::Destinations::Snowplow.new
2020-11-24 15:15:51 +05:30
end
2021-02-22 17:27:13 +05:30
def product_analytics
@product_analytics ||= Gitlab::Tracking::Destinations::ProductAnalytics.new
end
2019-12-04 20:38:33 +05:30
end
end
end