Explicitly wrapping the tsdb.DB functions that we use.
(ctx context.Context)
| 415 | // Explicitly wrapping the tsdb.DB functions that we use. |
| 416 | |
| 417 | func (u *userTSDB) Appender(ctx context.Context) storage.Appender { |
| 418 | return u.db.Appender(ctx) |
| 419 | } |
| 420 | |
| 421 | func (u *userTSDB) Querier(mint, maxt int64) (storage.Querier, error) { |
| 422 | return u.db.Querier(mint, maxt) |
no outgoing calls