Stats implements baker.Filter.
()
| 81 | |
| 82 | // Stats implements baker.Filter. |
| 83 | func (f *TimestampRange) Stats() baker.FilterStats { |
| 84 | return baker.FilterStats{ |
| 85 | NumFilteredLines: atomic.LoadInt64(&f.numFilteredLines), |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | // Process implements baker.Filter. |
| 90 | func (f *TimestampRange) Process(l baker.Record, next func(baker.Record)) { |
nothing calls this directly
no outgoing calls
no test coverage detected