about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-01-18 23:44:29 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-01-18 23:44:29 +0100
commit306eb6e9c90295dcdff2a0094066542a46a8e634 (patch)
tree10851d9b6eb2d81f5249769dc35bd2c1fb7d61d1 /app
parent7cfd5b680a64e2dcdc375274d9619e8ab2e2bb9f (diff)
Add optional StatsD performance tracking
Diffstat (limited to 'app')
-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