mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 22:51:41 +00:00
6 lines
207 B
Ruby
6 lines
207 B
Ruby
if Rails.env.production?
|
|
require 'prometheus_exporter/middleware'
|
|
|
|
# This reports stats per request like HTTP status and timings
|
|
Rails.application.middleware.unshift PrometheusExporter::Middleware
|
|
end
|