66963aad70
These were disabled in production mode, but that also broke the rest of the performance bar. As they were only enabled in development mode, we can just remove them for now.
13 lines
451 B
Ruby
13 lines
451 B
Ruby
require 'peek/adapters/redis'
|
|
|
|
Peek::Adapters::Redis.prepend ::Gitlab::PerformanceBar::RedisAdapterWhenPeekEnabled
|
|
|
|
Rails.application.config.peek.adapter = :redis, { client: ::Redis.new(Gitlab::Redis::Cache.params) }
|
|
|
|
Peek.into Peek::Views::Host
|
|
Peek.into Peek::Views::ActiveRecord
|
|
Peek.into Peek::Views::Gitaly
|
|
Peek.into Peek::Views::RedisDetailed
|
|
Peek.into Peek::Views::Rugged
|
|
|
|
Peek.into Peek::Views::Tracing if Labkit::Tracing.tracing_url_enabled?
|