summaryrefslogtreecommitdiff
path: root/lib/gitlab/usage_data_counters/editor_unique_counter.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/usage_data_counters/editor_unique_counter.rb')
-rw-r--r--lib/gitlab/usage_data_counters/editor_unique_counter.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/gitlab/usage_data_counters/editor_unique_counter.rb b/lib/gitlab/usage_data_counters/editor_unique_counter.rb
index 0b448f68153..2aebc1b8813 100644
--- a/lib/gitlab/usage_data_counters/editor_unique_counter.rb
+++ b/lib/gitlab/usage_data_counters/editor_unique_counter.rb
@@ -7,7 +7,6 @@ module Gitlab
EDIT_BY_SFE = 'g_edit_by_sfe'
EDIT_BY_WEB_IDE = 'g_edit_by_web_ide'
EDIT_CATEGORY = 'ide_edit'
- EDIT_BY_LIVE_PREVIEW = 'g_edit_by_live_preview'
class << self
def track_web_ide_edit_action(author:, time: Time.zone.now, project:)
@@ -34,15 +33,6 @@ module Gitlab
count_unique(EDIT_BY_SNIPPET_EDITOR, date_from, date_to)
end
- def count_edit_using_editor(date_from:, date_to:)
- events = Gitlab::UsageDataCounters::HLLRedisCounter.events_for_category(EDIT_CATEGORY)
- count_unique(events, date_from, date_to)
- end
-
- def track_live_preview_edit_action(author:, time: Time.zone.now, project:)
- track_unique_action(EDIT_BY_LIVE_PREVIEW, author, time, project)
- end
-
private
def track_unique_action(event_name, author, time, project = nil)