Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b58b8099
Commit
b58b8099
authored
Aug 09, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
44aa45f3
cd81e4e3
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
87 additions
and
17 deletions
+87
-17
changelogs/unreleased/sh-add-gitaly-and-rugged-data-sidekiq.yml
...logs/unreleased/sh-add-gitaly-and-rugged-data-sidekiq.yml
+5
-0
config/initializers/lograge.rb
config/initializers/lograge.rb
+1
-13
config/initializers/sidekiq.rb
config/initializers/sidekiq.rb
+1
-0
lib/gitlab/gitaly_client.rb
lib/gitlab/gitaly_client.rb
+1
-1
lib/gitlab/instrumentation_helper.rb
lib/gitlab/instrumentation_helper.rb
+25
-0
lib/gitlab/sidekiq_logging/structured_logger.rb
lib/gitlab/sidekiq_logging/structured_logger.rb
+8
-3
lib/gitlab/sidekiq_middleware/instrumentation_logger.rb
lib/gitlab/sidekiq_middleware/instrumentation_logger.rb
+21
-0
scripts/lint-rugged
scripts/lint-rugged
+1
-0
spec/lib/gitlab/sidekiq_logging/structured_logger_spec.rb
spec/lib/gitlab/sidekiq_logging/structured_logger_spec.rb
+24
-0
No files found.
changelogs/unreleased/sh-add-gitaly-and-rugged-data-sidekiq.yml
0 → 100644
View file @
b58b8099
---
title
:
Add Gitaly and Rugged call timing in Sidekiq logs
merge_request
:
31651
author
:
type
:
other
config/initializers/lograge.rb
View file @
b58b8099
...
...
@@ -27,19 +27,7 @@ unless Sidekiq.server?
queue_duration:
event
.
payload
[
:queue_duration
]
}
gitaly_calls
=
Gitlab
::
GitalyClient
.
get_request_count
if
gitaly_calls
>
0
payload
[
:gitaly_calls
]
=
gitaly_calls
payload
[
:gitaly_duration
]
=
Gitlab
::
GitalyClient
.
query_time_ms
end
rugged_calls
=
Gitlab
::
RuggedInstrumentation
.
query_count
if
rugged_calls
>
0
payload
[
:rugged_calls
]
=
rugged_calls
payload
[
:rugged_duration_ms
]
=
Gitlab
::
RuggedInstrumentation
.
query_time_ms
end
::
Gitlab
::
InstrumentationHelper
.
add_instrumentation_data
(
payload
)
payload
[
:response
]
=
event
.
payload
[
:response
]
if
event
.
payload
[
:response
]
payload
[
Labkit
::
Correlation
::
CorrelationId
::
LOG_KEY
]
=
Labkit
::
Correlation
::
CorrelationId
.
current_id
...
...
config/initializers/sidekiq.rb
View file @
b58b8099
...
...
@@ -39,6 +39,7 @@ Sidekiq.configure_server do |config|
chain
.
add
Gitlab
::
SidekiqMiddleware
::
RequestStoreMiddleware
unless
ENV
[
'SIDEKIQ_REQUEST_STORE'
]
==
'0'
chain
.
add
Gitlab
::
SidekiqMiddleware
::
BatchLoader
chain
.
add
Gitlab
::
SidekiqMiddleware
::
CorrelationLogger
chain
.
add
Gitlab
::
SidekiqMiddleware
::
InstrumentationLogger
chain
.
add
Gitlab
::
SidekiqStatus
::
ServerMiddleware
end
...
...
lib/gitlab/gitaly_client.rb
View file @
b58b8099
...
...
@@ -240,7 +240,7 @@ module Gitlab
# Ensures that Gitaly is not being abuse through n+1 misuse etc
def
self
.
enforce_gitaly_request_limits
(
call_site
)
# Only count limits in request-response environments
(not sidekiq for example)
# Only count limits in request-response environments
return
unless
Gitlab
::
SafeRequestStore
.
active?
# This is this actual number of times this call was made. Used for information purposes only
...
...
lib/gitlab/instrumentation_helper.rb
0 → 100644
View file @
b58b8099
# frozen_string_literal: true
module
Gitlab
module
InstrumentationHelper
extend
self
KEYS
=
%i(gitaly_calls gitaly_duration rugged_calls rugged_duration_ms)
.
freeze
def
add_instrumentation_data
(
payload
)
gitaly_calls
=
Gitlab
::
GitalyClient
.
get_request_count
if
gitaly_calls
>
0
payload
[
:gitaly_calls
]
=
gitaly_calls
payload
[
:gitaly_duration
]
=
Gitlab
::
GitalyClient
.
query_time_ms
end
rugged_calls
=
Gitlab
::
RuggedInstrumentation
.
query_count
if
rugged_calls
>
0
payload
[
:rugged_calls
]
=
rugged_calls
payload
[
:rugged_duration_ms
]
=
Gitlab
::
RuggedInstrumentation
.
query_time_ms
end
end
end
end
lib/gitlab/sidekiq_logging/structured_logger.rb
View file @
b58b8099
...
...
@@ -15,9 +15,9 @@ module Gitlab
yield
Sidekiq
.
logger
.
info
log_job_done
(
started_at
,
base_payload
)
Sidekiq
.
logger
.
info
log_job_done
(
job
,
started_at
,
base_payload
)
rescue
=>
job_exception
Sidekiq
.
logger
.
warn
log_job_done
(
started_at
,
base_payload
,
job_exception
)
Sidekiq
.
logger
.
warn
log_job_done
(
job
,
started_at
,
base_payload
,
job_exception
)
raise
end
...
...
@@ -28,6 +28,10 @@ module Gitlab
"
#{
payload
[
'class'
]
}
JID-
#{
payload
[
'jid'
]
}
"
end
def
add_instrumentation_keys!
(
job
,
output_payload
)
output_payload
.
merge!
(
job
.
slice
(
*::
Gitlab
::
InstrumentationHelper
::
KEYS
))
end
def
log_job_start
(
started_at
,
payload
)
payload
[
'message'
]
=
"
#{
base_message
(
payload
)
}
: start"
payload
[
'job_status'
]
=
'start'
...
...
@@ -41,8 +45,9 @@ module Gitlab
payload
end
def
log_job_done
(
started_at
,
payload
,
job_exception
=
nil
)
def
log_job_done
(
job
,
started_at
,
payload
,
job_exception
=
nil
)
payload
=
payload
.
dup
add_instrumentation_keys!
(
job
,
payload
)
payload
[
'duration'
]
=
elapsed
(
started_at
)
payload
[
'completed_at'
]
=
Time
.
now
.
utc
...
...
lib/gitlab/sidekiq_middleware/instrumentation_logger.rb
0 → 100644
View file @
b58b8099
# frozen_string_literal: true
module
Gitlab
module
SidekiqMiddleware
class
InstrumentationLogger
def
call
(
worker
,
job
,
queue
)
yield
# The Sidekiq logger is called outside the middleware block, so
# we need to modify the job hash to pass along this information
# since RequestStore is only active in the Sidekiq middleware.
#
# Modifying the job hash in a middleware is permitted by Sidekiq
# because Sidekiq keeps a pristine copy of the original hash
# before sending it to the middleware:
# https://github.com/mperham/sidekiq/blob/53bd529a0c3f901879925b8390353129c465b1f2/lib/sidekiq/processor.rb#L115-L118
::
Gitlab
::
InstrumentationHelper
.
add_instrumentation_data
(
job
)
end
end
end
end
scripts/lint-rugged
View file @
b58b8099
...
...
@@ -19,6 +19,7 @@ ALLOWED = [
'config/initializers/peek.rb'
,
'config/initializers/lograge.rb'
,
'lib/gitlab/grape_logging/loggers/perf_logger.rb'
,
'lib/gitlab/instrumentation_helper.rb'
,
'lib/gitlab/rugged_instrumentation.rb'
,
'lib/peek/views/rugged.rb'
].
freeze
...
...
spec/lib/gitlab/sidekiq_logging/structured_logger_spec.rb
View file @
b58b8099
...
...
@@ -153,5 +153,29 @@ describe Gitlab::SidekiqLogging::StructuredLogger do
end
end
end
context
'with Gitaly and Rugged calls'
do
let
(
:timing_data
)
do
{
gitaly_calls:
10
,
gitaly_duration:
10000
,
rugged_calls:
1
,
rugged_duration_ms:
5000
}
end
before
do
job
.
merge!
(
timing_data
)
end
it
'logs with Gitaly and Rugged timing data'
do
Timecop
.
freeze
(
timestamp
)
do
expect
(
logger
).
to
receive
(
:info
).
with
(
start_payload
.
except
(
'args'
)).
ordered
expect
(
logger
).
to
receive
(
:info
).
with
(
end_payload
.
except
(
'args'
)).
ordered
subject
.
call
(
job
,
'test_queue'
)
{
}
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment