Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-16 06:08:24 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-16 06:08:24 +0300
commite8d7ac4f14bcc70921ea9d63c75cd2e7f2cd5c31 (patch)
tree052085464aee0497ae525771ed066ef6a83c3eee /lib/gitlab/instrumentation
parent292d054661cc3e24bb1a4be98dacfd41fa7ad14e (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/instrumentation')
-rw-r--r--lib/gitlab/instrumentation/redis.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/instrumentation/redis.rb b/lib/gitlab/instrumentation/redis.rb
index b3831c9b50a..3ed1b18281e 100644
--- a/lib/gitlab/instrumentation/redis.rb
+++ b/lib/gitlab/instrumentation/redis.rb
@@ -11,8 +11,8 @@ module Gitlab
STORAGES = [ActionCable, Cache, Queues, SharedState].freeze
- # Milliseconds represented in seconds (from 1 to 500 milliseconds).
- QUERY_TIME_BUCKETS = [0.001, 0.0025, 0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5].freeze
+ # Milliseconds represented in seconds (from 1 millisecond to 2 seconds).
+ QUERY_TIME_BUCKETS = [0.001, 0.0025, 0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1, 2].freeze
class << self
def detail_store