Commit 18018bcd authored by Sean McGivern's avatar Sean McGivern

Fix performance bar thresholds

These were written in seconds but are supposed to be in
milliseconds. The total Gitaly time was wrong for the same reason.
parent 937b2027
...@@ -5,15 +5,15 @@ module Peek ...@@ -5,15 +5,15 @@ module Peek
class ActiveRecord < DetailedView class ActiveRecord < DetailedView
DEFAULT_THRESHOLDS = { DEFAULT_THRESHOLDS = {
calls: 100, calls: 100,
duration: 3, duration: 3000,
individual_call: 1 individual_call: 1000
}.freeze }.freeze
THRESHOLDS = { THRESHOLDS = {
production: { production: {
calls: 100, calls: 100,
duration: 15, duration: 15000,
individual_call: 5 individual_call: 5000
} }
}.freeze }.freeze
......
...@@ -5,15 +5,15 @@ module Peek ...@@ -5,15 +5,15 @@ module Peek
class Gitaly < DetailedView class Gitaly < DetailedView
DEFAULT_THRESHOLDS = { DEFAULT_THRESHOLDS = {
calls: 30, calls: 30,
duration: 1, duration: 1000,
individual_call: 0.5 individual_call: 500
}.freeze }.freeze
THRESHOLDS = { THRESHOLDS = {
production: { production: {
calls: 30, calls: 30,
duration: 1, duration: 1000,
individual_call: 0.5 individual_call: 500
} }
}.freeze }.freeze
...@@ -24,7 +24,7 @@ module Peek ...@@ -24,7 +24,7 @@ module Peek
private private
def duration def duration
::Gitlab::GitalyClient.query_time ::Gitlab::GitalyClient.query_time * 1000
end end
def calls def calls
......
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