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

sentry.rb « system_logs « support « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aee97f769316bbc80f5092616000842f5bdbf358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

module QA
  module Support
    module SystemLogs
      class Sentry
        BASE_URLS = {
          staging: 'https://new-sentry.gitlab.net/organizations/gitlab/issues/?environment=gstg&project=3',
          staging_ref: 'https://new-sentry.gitlab.net/organizations/gitlab/issues/?environment=gstg-ref&project=3',
          pre: 'https://new-sentry.gitlab.net/organizations/gitlab/issues/?environment=pre&project=3',
          production: 'https://new-sentry.gitlab.net/organizations/gitlab/issues/?environment=gprd&project=3'
        }.freeze

        def initialize(env, correlation_id)
          @base_url = BASE_URLS[env]
          @correlation_id = correlation_id
        end

        def url
          return if @base_url.nil?

          "#{@base_url}&query=correlation_id%3A%22#{@correlation_id}%22"
        end
      end
    end
  end
end