Commit 088eed8e authored by Robert Speicher's avatar Robert Speicher

Merge branch 'kerrizor/improve_readability_of_memory_bin_sizes' into 'master'

Use _ to improve readability of large numbers

See merge request gitlab-org/gitlab!29254
parents bbd15ea4 acc3d418
......@@ -14,7 +14,7 @@ module Gitlab
define_histogram :gitlab_redis_diff_caching_memory_usage_bytes do
docstring 'Redis diff caching memory usage by key'
buckets [100, 1000, 10000, 100000, 1000000, 10000000]
buckets [100, 1_000, 10_000, 100_000, 1_000_000, 10_000_000]
end
define_counter :gitlab_redis_diff_caching_hit do
......
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