Commit ebb5d9f4 authored by Kamil Trzciński's avatar Kamil Trzciński

Revert "Prefer to use correlation-id in logs"

This reverts commit 3560b119.
parent 3560b119
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
module Gitlab module Gitlab
module CorrelationId module CorrelationId
LOG_KEY = 'correlation-id'.freeze LOG_KEY = 'correlation_id'.freeze
class << self class << self
def use_id(correlation_id, &blk) def use_id(correlation_id, &blk)
......
...@@ -193,7 +193,7 @@ module Gitlab ...@@ -193,7 +193,7 @@ module Gitlab
feature = feature_stack && feature_stack[0] feature = feature_stack && feature_stack[0]
metadata['call_site'] = feature.to_s if feature metadata['call_site'] = feature.to_s if feature
metadata['gitaly-servers'] = address_metadata(remote_storage) if remote_storage metadata['gitaly-servers'] = address_metadata(remote_storage) if remote_storage
metadata[Gitlab::CorrelationId::LOG_KEY] = Gitlab::CorrelationId.current_id if Gitlab::CorrelationId.current_id metadata['correlation_id'] = Gitlab::CorrelationId.current_id if Gitlab::CorrelationId.current_id
metadata.merge!(server_feature_flags) metadata.merge!(server_feature_flags)
......
...@@ -45,7 +45,7 @@ module Gitlab ...@@ -45,7 +45,7 @@ module Gitlab
context # Make sure we've set everything we know in the context context # Make sure we've set everything we know in the context
tags = { tags = {
correlation_id: Gitlab::CorrelationId.current_id Gitlab::CorrelationId::LOG_KEY.to_sym => Gitlab::CorrelationId.current_id
} }
Raven.capture_exception(exception, tags: tags, extra: extra) Raven.capture_exception(exception, tags: tags, extra: extra)
......
...@@ -465,7 +465,7 @@ describe ApplicationController do ...@@ -465,7 +465,7 @@ describe ApplicationController do
get :index get :index
end end
expect(controller.last_payload).to include('correlation-id' => 'new-id') expect(controller.last_payload).to include('correlation_id' => 'new-id')
end end
context '422 errors' do context '422 errors' do
......
...@@ -11,7 +11,7 @@ describe 'lograge', type: :request do ...@@ -11,7 +11,7 @@ describe 'lograge', type: :request do
it 'logs to api_json log' do it 'logs to api_json log' do
# we assert receiving parameters by grape logger # we assert receiving parameters by grape logger
expect_any_instance_of(Gitlab::GrapeLogging::Formatters::LogrageWithTimestamp).to receive(:call) expect_any_instance_of(Gitlab::GrapeLogging::Formatters::LogrageWithTimestamp).to receive(:call)
.with(anything, anything, anything, a_hash_including("correlation-id" => "new-correlation-id")) .with(anything, anything, anything, a_hash_including("correlation_id" => "new-correlation-id"))
.and_call_original .and_call_original
subject subject
...@@ -24,12 +24,12 @@ describe 'lograge', type: :request do ...@@ -24,12 +24,12 @@ describe 'lograge', type: :request do
it 'logs to production_json log' do it 'logs to production_json log' do
# formatter receives a hash with correlation id # formatter receives a hash with correlation id
expect(Lograge.formatter).to receive(:call) expect(Lograge.formatter).to receive(:call)
.with(a_hash_including("correlation-id" => "new-correlation-id")) .with(a_hash_including("correlation_id" => "new-correlation-id"))
.and_call_original .and_call_original
# a log file receives a line with correlation id # a log file receives a line with correlation id
expect(Lograge.logger).to receive(:send) expect(Lograge.logger).to receive(:send)
.with(anything, include('"correlation-id":"new-correlation-id"')) .with(anything, include('"correlation_id":"new-correlation-id"'))
.and_call_original .and_call_original
subject subject
......
...@@ -18,7 +18,7 @@ describe Gitlab::JsonLogger do ...@@ -18,7 +18,7 @@ describe Gitlab::JsonLogger do
expect(data['severity']).to eq('INFO') expect(data['severity']).to eq('INFO')
expect(data['time']).to eq(now.utc.iso8601(3)) expect(data['time']).to eq(now.utc.iso8601(3))
expect(data['message']).to eq('Hello world') expect(data['message']).to eq('Hello world')
expect(data['correlation-id']).to eq('new-correlation-id') expect(data['correlation_id']).to eq('new-correlation-id')
end end
it 'formats hashes' do it 'formats hashes' do
...@@ -29,7 +29,7 @@ describe Gitlab::JsonLogger do ...@@ -29,7 +29,7 @@ describe Gitlab::JsonLogger do
expect(data['time']).to eq(now.utc.iso8601(3)) expect(data['time']).to eq(now.utc.iso8601(3))
expect(data['hello']).to eq(1) expect(data['hello']).to eq(1)
expect(data['message']).to be_nil expect(data['message']).to be_nil
expect(data['correlation-id']).to eq('new-correlation-id') expect(data['correlation_id']).to eq('new-correlation-id')
end end
end end
end end
...@@ -13,7 +13,7 @@ describe Gitlab::SidekiqLogging::StructuredLogger do ...@@ -13,7 +13,7 @@ describe Gitlab::SidekiqLogging::StructuredLogger do
"jid" => "da883554ee4fe414012f5f42", "jid" => "da883554ee4fe414012f5f42",
"created_at" => timestamp.to_f, "created_at" => timestamp.to_f,
"enqueued_at" => timestamp.to_f, "enqueued_at" => timestamp.to_f,
"correlation-id" => 'cid' "correlation_id" => 'cid'
} }
end end
let(:logger) { double() } let(:logger) { double() }
......
...@@ -37,7 +37,7 @@ describe Gitlab::SidekiqMiddleware::CorrelationInjector do ...@@ -37,7 +37,7 @@ describe Gitlab::SidekiqMiddleware::CorrelationInjector do
expected_job_params = { expected_job_params = {
"class" => "TestWorker", "class" => "TestWorker",
"args" => [1234], "args" => [1234],
"correlation-id" => "new-correlation-id" "correlation_id" => "new-correlation-id"
} }
expect(Sidekiq::Queues.jobs_by_worker).to a_hash_including( expect(Sidekiq::Queues.jobs_by_worker).to a_hash_including(
......
...@@ -30,6 +30,6 @@ describe Gitlab::SidekiqMiddleware::CorrelationLogger do ...@@ -30,6 +30,6 @@ describe Gitlab::SidekiqMiddleware::CorrelationLogger do
'queue' => 'test', 'queue' => 'test',
'class' => TestWorker, 'class' => TestWorker,
'args' => [1234], 'args' => [1234],
'correlation-id' => 'new-correlation-id') 'correlation_id' => 'new-correlation-id')
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment