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
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
Tatuya Kamada
gitlab-ce
Commits
6992b072
Commit
6992b072
authored
Jan 12, 2016
by
Yorick Peterse
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'allocated-memory-per-transaction' into 'master'
See merge request !2389
parents
e85faec9
5679ee01
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
7 deletions
+37
-7
lib/gitlab/metrics/transaction.rb
lib/gitlab/metrics/transaction.rb
+12
-3
spec/lib/gitlab/metrics/transaction_spec.rb
spec/lib/gitlab/metrics/transaction_spec.rb
+25
-4
No files found.
lib/gitlab/metrics/transaction.rb
View file @
6992b072
...
...
@@ -23,19 +23,28 @@ module Gitlab
@values
=
Hash
.
new
(
0
)
@tags
=
{}
@action
=
action
@memory_before
=
0
@memory_after
=
0
end
def
duration
@finished_at
?
(
@finished_at
-
@started_at
)
*
1000.0
:
0.0
end
def
allocated_memory
@memory_after
-
@memory_before
end
def
run
Thread
.
current
[
THREAD_KEY
]
=
self
@memory_before
=
System
.
memory_usage
@started_at
=
Time
.
now
yield
ensure
@memory_after
=
System
.
memory_usage
@finished_at
=
Time
.
now
Thread
.
current
[
THREAD_KEY
]
=
nil
...
...
@@ -65,7 +74,7 @@ module Gitlab
end
def
track_self
values
=
{
duration:
duration
}
values
=
{
duration:
duration
,
allocated_memory:
allocated_memory
}
@values
.
each
do
|
name
,
value
|
values
[
name
]
=
value
...
...
spec/lib/gitlab/metrics/transaction_spec.rb
View file @
6992b072
...
...
@@ -11,6 +11,14 @@ describe Gitlab::Metrics::Transaction do
end
end
describe
'#allocated_memory'
do
it
'returns the allocated memory in bytes'
do
transaction
.
run
{
'a'
*
32
}
expect
(
transaction
.
allocated_memory
).
to
be_a_kind_of
(
Numeric
)
end
end
describe
'#run'
do
it
'yields the supplied block'
do
expect
{
|
b
|
transaction
.
run
(
&
b
)
}.
to
yield_control
...
...
@@ -43,8 +51,10 @@ describe Gitlab::Metrics::Transaction do
transaction
.
increment
(
:time
,
1
)
transaction
.
increment
(
:time
,
2
)
values
=
{
duration:
0.0
,
time:
3
,
allocated_memory:
a_kind_of
(
Numeric
)
}
expect
(
transaction
).
to
receive
(
:add_metric
).
with
(
'transactions'
,
{
duration:
0.0
,
time:
3
}
,
{})
with
(
'transactions'
,
values
,
{})
transaction
.
track_self
end
...
...
@@ -54,8 +64,14 @@ describe Gitlab::Metrics::Transaction do
it
'sets a value'
do
transaction
.
set
(
:number
,
10
)
values
=
{
duration:
0.0
,
number:
10
,
allocated_memory:
a_kind_of
(
Numeric
)
}
expect
(
transaction
).
to
receive
(
:add_metric
).
with
(
'transactions'
,
{
duration:
0.0
,
number:
10
}
,
{})
with
(
'transactions'
,
values
,
{})
transaction
.
track_self
end
...
...
@@ -80,8 +96,13 @@ describe Gitlab::Metrics::Transaction do
describe
'#track_self'
do
it
'adds a metric for the transaction itself'
do
values
=
{
duration:
transaction
.
duration
,
allocated_memory:
a_kind_of
(
Numeric
)
}
expect
(
transaction
).
to
receive
(
:add_metric
).
with
(
'transactions'
,
{
duration:
transaction
.
duration
}
,
{})
with
(
'transactions'
,
values
,
{})
transaction
.
track_self
end
...
...
@@ -104,7 +125,7 @@ describe Gitlab::Metrics::Transaction do
hash
=
{
series:
'rails_transactions'
,
tags:
{
action:
'Foo#bar'
},
values:
{
duration:
0.0
},
values:
{
duration:
0.0
,
allocated_memory:
a_kind_of
(
Numeric
)
},
timestamp:
an_instance_of
(
Fixnum
)
}
...
...
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