summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Van Landuyt <bob@vanlanduyt.co>2017-07-20 08:53:57 +0200
committerBob Van Landuyt <bob@vanlanduyt.co>2017-08-31 14:10:04 +0200
commitb6646e778d43a9b6ba768a8799830095cfcff635 (patch)
treea40ab9cb0d2c38f79601f70603c78023fdaff8e2
parentbf4ec606a56238326bf4930c59d0ca82dd281cb7 (diff)
downloadgitlab-ce-b6646e778d43a9b6ba768a8799830095cfcff635.tar.gz
Track the locale in Sentry so we know which ones are failing
-rw-r--r--lib/gitlab/sentry.rb2
-rw-r--r--spec/lib/gitlab/sentry_spec.rb13
2 files changed, 15 insertions, 0 deletions
diff --git a/lib/gitlab/sentry.rb b/lib/gitlab/sentry.rb
index 2442c2ded3b..d7e73f30abf 100644
--- a/lib/gitlab/sentry.rb
+++ b/lib/gitlab/sentry.rb
@@ -7,6 +7,8 @@ module Gitlab
def self.context(current_user = nil)
return unless self.enabled?
+ Raven.tags_context(locale: I18n.locale)
+
if current_user
Raven.user_context(
id: current_user.id,
diff --git a/spec/lib/gitlab/sentry_spec.rb b/spec/lib/gitlab/sentry_spec.rb
new file mode 100644
index 00000000000..8c211d1c63f
--- /dev/null
+++ b/spec/lib/gitlab/sentry_spec.rb
@@ -0,0 +1,13 @@
+require 'spec_helper'
+
+describe Gitlab::Sentry do
+ describe '.context' do
+ it 'adds the locale to the tags' do
+ expect(described_class).to receive(:enabled?).and_return(true)
+
+ described_class.context(nil)
+
+ expect(Raven.tags_context[:locale]).to eq(I18n.locale.to_s)
+ end
+ end
+end