Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-07-02 15:08:31 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-07-02 15:08:31 +0300
commit082a21ddd4d13dd00fc443ecc29c6cc5c1229423 (patch)
treea5e18db615d097574f6aa932ab1d5a1782f854e5 /lib/error_tracking
parent6c4491e9365c6749fb7f2fb9826c450c3035a417 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/error_tracking')
-rw-r--r--lib/error_tracking/collector/dsn.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/error_tracking/collector/dsn.rb b/lib/error_tracking/collector/dsn.rb
deleted file mode 100644
index 665181328f3..00000000000
--- a/lib/error_tracking/collector/dsn.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-# frozen_string_literal: true
-
-module ErrorTracking
- module Collector
- class Dsn
- # Build a sentry compatible DSN URL for GitLab collector.
- #
- # The expected URL looks like that:
- # https://PUBLIC_KEY@gitlab.example.com/api/v4/error_tracking/collector/PROJECT_ID
- #
- def self.build_url(public_key, project_id)
- gitlab = Settings.gitlab
-
- custom_port = Settings.gitlab_on_standard_port? ? nil : ":#{gitlab.port}"
-
- base_url = [
- gitlab.protocol,
- "://",
- public_key,
- '@',
- gitlab.host,
- custom_port,
- gitlab.relative_url_root
- ].join('')
-
- "#{base_url}/api/v4/error_tracking/collector/#{project_id}"
- end
- end
- end
-end