Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
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
0
Merge Requests
0
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
iv
gitlab-shell
Commits
08c8f308
Commit
08c8f308
authored
Feb 09, 2016
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Log duration of HTTP API requests
parent
e07469ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
lib/gitlab_net.rb
lib/gitlab_net.rb
+5
-0
No files found.
lib/gitlab_net.rb
View file @
08c8f308
...
...
@@ -106,10 +106,15 @@ class GitlabNet
request
=
http_request_for
(
method
,
uri
,
params
)
begin
start_time
=
Time
.
new
response
=
http
.
start
{
http
.
request
(
request
)
}
rescue
=>
e
$logger
.
warn
"Failed to connect to internal API <
#{
method
.
to_s
.
upcase
}
#{
url
}
>:
#{
e
.
inspect
}
"
raise
ApiUnreachableError
ensure
$logger
.
info
do
sprintf
(
'%s %s %0.5f'
,
method
.
to_s
.
upcase
,
url
,
Time
.
new
-
start_time
)
end
end
if
response
.
code
==
"200"
...
...
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