Class: RubyZipkin::TraceFilter
- Inherits:
-
Object
- Object
- RubyZipkin::TraceFilter
- Defined in:
- lib/ruby-zipkin/trace_filter.rb
Class Method Summary collapse
Class Method Details
.UriFilter(uri) ⇒ Object
5 6 7 8 9 10 11 |
# File 'lib/ruby-zipkin/trace_filter.rb', line 5 def self.UriFilter(uri) #exclude static content requests if uri.match /.*(\.svg)|(\.ttf)|(.woff)/ return false end true end |