BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
aaf8547e
Commit
aaf8547e
authored
Oct 24, 2017
by
Rémy Coutable
Committed by
Michael Kozono
Oct 24, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge branch 'performance-bar-sql' into 'master'
Remove Sherlock usage from the performance bar Closes #39351 See merge request gitlab-org/gitlab-ce!15000 (cherry picked from commit
057c81b1
)
189b5c3c
Remove Sherlock usage from the performance bar
parent
0791a779
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
peek_query_tracker.rb
lib/gitlab/performance_bar/peek_query_tracker.rb
+2
-2
No files found.
lib/gitlab/performance_bar/peek_query_tracker.rb
View file @
aaf8547e
...
...
@@ -36,8 +36,8 @@ module Gitlab
end
def
track_query
(
raw_query
,
bindings
,
start
,
finish
)
query
=
Gitlab
::
Sherlock
::
Query
.
new
(
raw_query
,
start
,
finish
)
query_info
=
{
duration:
query
.
duration
.
round
(
3
),
sql:
query
.
formatted
_query
}
duration
=
finish
-
start
query_info
=
{
duration:
duration
.
round
(
3
),
sql:
raw
_query
}
PEEK_DB_CLIENT
.
query_details
<<
query_info
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