7 lines
197 B
Go
7 lines
197 B
Go
package telemetry
|
|
|
|
// TraceAware is implemented by items that can expose a trace ID.
|
|
// BucketedBuffer uses this to group items by trace.
|
|
type TraceAware interface {
|
|
GetTraceID() (string, bool)
|
|
}
|