From d567f21d4f4c3feb09a08443cf75eb583904093b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 26 Jan 2017 19:08:05 +0100 Subject: Improve StatsD instrumentation --- lib/statsd_monitor.rb | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 lib/statsd_monitor.rb (limited to 'lib/statsd_monitor.rb') diff --git a/lib/statsd_monitor.rb b/lib/statsd_monitor.rb deleted file mode 100644 index e48ce6541..000000000 --- a/lib/statsd_monitor.rb +++ /dev/null @@ -1,11 +0,0 @@ -# frozen_string_literal: true - -class StatsDMonitor - def initialize(app) - @app = app - end - - def call(env) - @app.call(env) - end -end -- cgit