Name |
Last commit
|
Last update |
---|---|---|
.. | ||
subscribers | ||
delta.rb | ||
instrumentation.rb | ||
method_call.rb | ||
metric.rb | ||
rack_middleware.rb | ||
sampler.rb | ||
sidekiq_middleware.rb | ||
system.rb | ||
transaction.rb |
BigW Consortium Gitlab
Previously we'd create a separate Metric instance for every method call that would exceed the method call threshold. This is problematic because it doesn't provide us with information to accurately get the _total_ execution time of a particular method. For example, if the method "Foo#bar" was called 4 times with a runtime of ~10 milliseconds we'd end up with 4 different Metric instances. If we were to then get the average/95th percentile/etc of the timings this would be roughly 10 milliseconds. However, the _actual_ total time spent in this method would be around 40 milliseconds. To solve this problem we now create a single Metric instance per method. This Metric instance contains the _total_ real/CPU time and the call count for every instrumented method.
Name |
Last commit
|
Last update |
---|---|---|
.. | ||
subscribers | Loading commit data... | |
delta.rb | Loading commit data... | |
instrumentation.rb | Loading commit data... | |
method_call.rb | Loading commit data... | |
metric.rb | Loading commit data... | |
rack_middleware.rb | Loading commit data... | |
sampler.rb | Loading commit data... | |
sidekiq_middleware.rb | Loading commit data... | |
system.rb | Loading commit data... | |
transaction.rb | Loading commit data... |