WithTimeOverlapCutoff sets the overlap threshold (0 to 1) for trace-level timestamp filtering. When not set the default value is used.
(v float64)
| 49 | // WithTimeOverlapCutoff sets the overlap threshold (0 to 1) for trace-level timestamp filtering. When not |
| 50 | // set the default value is used. |
| 51 | func WithTimeOverlapCutoff(v float64) CompileOption { |
| 52 | return func(o *compileOptions) { |
| 53 | o.timeOverlapCutoff = v |
| 54 | } |
| 55 | } |
no outgoing calls