Merge branch 'tweak-sql-buckets' into 'master'
Add a 10 ms bucket for SQL timings See merge request gitlab-org/gitlab-ce!20527
This commit is contained in:
commit
1b151f3520
2 changed files with 6 additions and 1 deletions
5
changelogs/unreleased/tweak-sql-buckets.yml
Normal file
5
changelogs/unreleased/tweak-sql-buckets.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Add a 10 ms bucket for SQL timings
|
||||
merge_request:
|
||||
author:
|
||||
type: changed
|
|
@ -20,7 +20,7 @@ module Gitlab
|
|||
define_histogram :gitlab_sql_duration_seconds do
|
||||
docstring 'SQL time'
|
||||
base_labels Transaction::BASE_LABELS
|
||||
buckets [0.05, 0.1, 0.25, 0.5, 1.0, 2.5, 5.0]
|
||||
buckets [0.01, 0.05, 0.1, 0.25, 0.5, 1.0, 2.5, 5.0]
|
||||
end
|
||||
|
||||
def current_transaction
|
||||
|
|
Loading…
Reference in a new issue