about summary refs log tree commit diff
path: root/app/lib/statsd_monitor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/statsd_monitor.rb')
-rw-r--r--app/lib/statsd_monitor.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/lib/statsd_monitor.rb b/app/lib/statsd_monitor.rb
new file mode 100644
index 000000000..e48ce6541
--- /dev/null
+++ b/app/lib/statsd_monitor.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+class StatsDMonitor
+  def initialize(app)
+    @app = app
+  end
+
+  def call(env)
+    @app.call(env)
+  end
+end