mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-13 06:41:42 +00:00
7 lines
205 B
Ruby
7 lines
205 B
Ruby
|
unless Rails.env.test?
|
||
|
require 'prometheus_exporter/middleware'
|
||
|
|
||
|
# This reports stats per request like HTTP status and timings
|
||
|
Rails.application.middleware.unshift PrometheusExporter::Middleware
|
||
|
end
|