gitlab-ce/lib/gitlab/internal_events.rb

168 lines
6.1 KiB
Ruby

# frozen_string_literal: true
module Gitlab
module InternalEvents
UnknownEventError = Class.new(StandardError)
InvalidPropertyError = Class.new(StandardError)
InvalidPropertyTypeError = Class.new(StandardError)
SNOWPLOW_EMITTER_BUFFER_SIZE = 100
ALLOWED_ADDITIONAL_PROPERTIES = {
label: [String],
property: [String],
value: [Integer, Float]
}.freeze
class << self
include Gitlab::Tracking::Helpers
include Gitlab::Utils::StrongMemoize
include Gitlab::UsageDataCounters::RedisCounter
def track_event(event_name, category: nil, send_snowplow_event: true, additional_properties: {}, **kwargs)
raise UnknownEventError, "Unknown event: #{event_name}" unless EventDefinitions.known_event?(event_name)
validate_properties!(additional_properties, kwargs)
project = kwargs[:project]
kwargs[:namespace] ||= project.namespace if project
increase_total_counter(event_name)
increase_weekly_total_counter(event_name)
update_unique_counters(event_name, kwargs)
trigger_snowplow_event(event_name, category, additional_properties, kwargs) if send_snowplow_event
if Feature.enabled?(:internal_events_for_product_analytics) && send_snowplow_event
send_application_instrumentation_event(event_name, additional_properties, kwargs)
end
rescue StandardError => e
extra = {}
kwargs.each_key do |k|
extra[k] = kwargs[k].is_a?(::ApplicationRecord) ? kwargs[k].try(:id) : kwargs[k]
end
Gitlab::ErrorTracking.track_and_raise_for_dev_exception(
e,
event_name: event_name,
additional_properties: additional_properties,
kwargs: extra
)
nil
end
private
def validate_properties!(additional_properties, kwargs)
validate_property!(kwargs, :user, User)
validate_property!(kwargs, :namespace, Namespaces::UserNamespace, Group)
validate_property!(kwargs, :project, Project)
validate_additional_properties!(additional_properties)
end
def validate_property!(hash, key, *class_names)
return unless hash.has_key?(key)
return if hash[key].nil?
return if class_names.include?(hash[key].class)
raise InvalidPropertyTypeError, "#{key} should be an instance of #{class_names.join(', ')}"
end
def validate_additional_properties!(additional_properties)
return if additional_properties.empty?
disallowed_properties = additional_properties.keys - ALLOWED_ADDITIONAL_PROPERTIES.keys
unless disallowed_properties.empty?
info = "Additional properties should include only #{ALLOWED_ADDITIONAL_PROPERTIES.keys}. " \
"Disallowed properties found: #{disallowed_properties}"
raise InvalidPropertyError, info
end
additional_properties.each do |key, _value|
allowed_classes = ALLOWED_ADDITIONAL_PROPERTIES[key]
validate_property!(additional_properties, key, *allowed_classes)
end
end
def increase_total_counter(event_name)
redis_counter_key = Gitlab::Usage::Metrics::Instrumentations::TotalCountMetric.redis_key(event_name)
increment(redis_counter_key)
end
def increase_weekly_total_counter(event_name)
redis_counter_key = Gitlab::Usage::Metrics::Instrumentations::TotalCountMetric.redis_key(event_name, Date.today)
increment(redis_counter_key)
end
def update_unique_counters(event_name, kwargs)
unique_properties = EventDefinitions.unique_properties(event_name)
return if unique_properties.empty?
unique_properties.each do |property_name|
unless kwargs[property_name]
message = "#{event_name} should be triggered with a named parameter '#{property_name}'."
Gitlab::AppJsonLogger.warn(message: message)
next
end
unique_value = kwargs[property_name].id
UsageDataCounters::HLLRedisCounter.track_event(event_name, values: unique_value, property_name: property_name)
end
end
def trigger_snowplow_event(event_name, category, additional_properties, kwargs)
user = kwargs[:user]
project = kwargs[:project]
namespace = kwargs[:namespace]
standard_context = Tracking::StandardContext.new(
project_id: project&.id,
user_id: user&.id,
namespace_id: namespace&.id,
plan_name: namespace&.actual_plan_name
).to_context
service_ping_context = Tracking::ServicePingContext.new(
data_source: :redis_hll,
event: event_name
).to_context
contexts = [standard_context, service_ping_context]
track_struct_event(event_name, category, contexts: contexts, additional_properties: additional_properties)
end
def track_struct_event(event_name, category, contexts:, additional_properties:)
category ||= 'InternalEventTracking'
tracker = Gitlab::Tracking.tracker
tracker.event(category, event_name, context: contexts, **additional_properties)
rescue StandardError => error
Gitlab::ErrorTracking
.track_and_raise_for_dev_exception(error, snowplow_category: category, snowplow_action: event_name)
end
def send_application_instrumentation_event(event_name, additional_properties, kwargs)
return if gitlab_sdk_client.nil?
user = kwargs[:user]
gitlab_sdk_client.identify(user&.id)
tracked_attributes = { project_id: kwargs[:project]&.id, namespace_id: kwargs[:namespace]&.id }
tracked_attributes[:additional_properties] = additional_properties unless additional_properties.empty?
gitlab_sdk_client.track(event_name, tracked_attributes)
end
def gitlab_sdk_client
app_id = ENV['GITLAB_ANALYTICS_ID']
host = ENV['GITLAB_ANALYTICS_URL']
return unless app_id.present? && host.present?
GitlabSDK::Client.new(app_id: app_id, host: host, buffer_size: SNOWPLOW_EMITTER_BUFFER_SIZE)
end
strong_memoize_attr :gitlab_sdk_client
end
end
end