| 30 | return args.Get(0).(*client.ExemplarQueryResponse), args.Error(1) |
| 31 | } |
| 32 | func (m *MockDistributor) QueryStream(ctx context.Context, from, to model.Time, partialDataEnabled bool, matchers ...*labels.Matcher) (*client.QueryStreamResponse, error) { |
| 33 | args := m.Called(ctx, from, to, matchers) |
| 34 | return args.Get(0).(*client.QueryStreamResponse), args.Error(1) |
| 35 | } |
| 36 | func (m *MockDistributor) LabelValuesForLabelName(ctx context.Context, from, to model.Time, lbl model.LabelName, hints *storage.LabelHints, partialDataEnabled bool, matchers ...*labels.Matcher) ([]string, error) { |
| 37 | args := m.Called(ctx, from, to, lbl, hints, matchers) |
| 38 | return args.Get(0).([]string), args.Error(1) |