| 42 | return args.Get(0).([]string), args.Error(1) |
| 43 | } |
| 44 | func (m *MockDistributor) LabelNames(ctx context.Context, from model.Time, to model.Time, hints *storage.LabelHints, b bool, matchers ...*labels.Matcher) ([]string, error) { |
| 45 | args := m.Called(ctx, from, to, hints, matchers) |
| 46 | return args.Get(0).([]string), args.Error(1) |
| 47 | } |
| 48 | func (m *MockDistributor) LabelNamesStream(ctx context.Context, from model.Time, to model.Time, hints *storage.LabelHints, b bool, matchers ...*labels.Matcher) ([]string, error) { |
| 49 | args := m.Called(ctx, from, to, hints, matchers) |
| 50 | return args.Get(0).([]string), args.Error(1) |