| 17 | var _ Store = (*store)(nil) |
| 18 | |
| 19 | type store struct { |
| 20 | l *list.List |
| 21 | mtx sync.Mutex |
| 22 | m map[string]*list.Element |
| 23 | d map[droppedSpanSideKey]int64 |
| 24 | |
| 25 | onComplete Callback |
| 26 | onExpire Callback |
| 27 | |
| 28 | ttl time.Duration |
| 29 | maxItems int |
| 30 | |
| 31 | droppedSpanSideOverflowCounter prometheus.Counter |
| 32 | } |
| 33 | |
| 34 | type droppedSpanSideKey struct { |
| 35 | key string |
nothing calls this directly
no outgoing calls
no test coverage detected