Commit bcd2a09d authored by Yorick Peterse's avatar Yorick Peterse

Merge branch 'metrics-milliseconds' into 'master'

See merge request !2316
parents fc386b65 7549102b
...@@ -19,7 +19,7 @@ module Gitlab ...@@ -19,7 +19,7 @@ module Gitlab
values = values_for(event) values = values_for(event)
tags = tags_for(event) tags = tags_for(event)
current_transaction.increment(:view_duration, event.duration) current_transaction.increment(:view_duration, duration(event))
current_transaction.add_metric(SERIES, values, tags) current_transaction.add_metric(SERIES, values, tags)
end end
...@@ -28,7 +28,7 @@ module Gitlab ...@@ -28,7 +28,7 @@ module Gitlab
end end
def values_for(event) def values_for(event)
{ duration: event.duration } { duration: duration(event) }
end end
def tags_for(event) def tags_for(event)
...@@ -48,6 +48,10 @@ module Gitlab ...@@ -48,6 +48,10 @@ module Gitlab
def current_transaction def current_transaction
Transaction.current Transaction.current
end end
def duration(event)
event.duration * 1000.0
end
end end
end end
end end
......
...@@ -8,7 +8,7 @@ module Gitlab ...@@ -8,7 +8,7 @@ module Gitlab
def sql(event) def sql(event)
return unless current_transaction return unless current_transaction
current_transaction.increment(:sql_duration, event.duration) current_transaction.increment(:sql_duration, duration(event))
end end
private private
...@@ -16,6 +16,10 @@ module Gitlab ...@@ -16,6 +16,10 @@ module Gitlab
def current_transaction def current_transaction
Transaction.current Transaction.current
end end
def duration(event)
event.duration * 1000.0
end
end end
end end
end end
......
...@@ -21,7 +21,7 @@ describe Gitlab::Metrics::Subscribers::ActionView do ...@@ -21,7 +21,7 @@ describe Gitlab::Metrics::Subscribers::ActionView do
describe '#render_template' do describe '#render_template' do
it 'tracks rendering of a template' do it 'tracks rendering of a template' do
values = { duration: 2.1 } values = { duration: 2100 }
tags = { tags = {
view: 'app/views/x.html.haml', view: 'app/views/x.html.haml',
file: 'app/views/x.html.haml', file: 'app/views/x.html.haml',
...@@ -29,7 +29,7 @@ describe Gitlab::Metrics::Subscribers::ActionView do ...@@ -29,7 +29,7 @@ describe Gitlab::Metrics::Subscribers::ActionView do
} }
expect(transaction).to receive(:increment). expect(transaction).to receive(:increment).
with(:view_duration, 2.1) with(:view_duration, 2100)
expect(transaction).to receive(:add_metric). expect(transaction).to receive(:add_metric).
with(described_class::SERIES, values, tags) with(described_class::SERIES, values, tags)
......
...@@ -26,7 +26,7 @@ describe Gitlab::Metrics::Subscribers::ActiveRecord do ...@@ -26,7 +26,7 @@ describe Gitlab::Metrics::Subscribers::ActiveRecord do
and_return(transaction) and_return(transaction)
expect(transaction).to receive(:increment). expect(transaction).to receive(:increment).
with(:sql_duration, 0.2) with(:sql_duration, 200)
subscriber.sql(event) subscriber.sql(event)
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