@@ -33,11 +33,11 @@ func (m *MockDistributor) QueryStream(ctx context.Context, from, to model.Time,
33
33
args := m .Called (ctx , from , to , matchers )
34
34
return args .Get (0 ).(* client.QueryStreamResponse ), args .Error (1 )
35
35
}
36
- func (m * MockDistributor ) LabelValuesForLabelName (ctx context.Context , from , to model.Time , label model.LabelName , hint * storage.LabelHints , partialDataEnabled bool , matchers ... * labels.Matcher ) ([]string , error ) {
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
37
args := m .Called (ctx , from , to , lbl , hints , matchers )
38
38
return args .Get (0 ).([]string ), args .Error (1 )
39
39
}
40
- func (m * MockDistributor ) LabelValuesForLabelNameStream (ctx context.Context , from , to model.Time , label model.LabelName , hint * storage.LabelHints , partialDataEnabled bool , matchers ... * labels.Matcher ) ([]string , error ) {
40
+ func (m * MockDistributor ) LabelValuesForLabelNameStream (ctx context.Context , from , to model.Time , lbl model.LabelName , hints * storage.LabelHints , partialDataEnabled bool , matchers ... * labels.Matcher ) ([]string , error ) {
41
41
args := m .Called (ctx , from , to , lbl , hints , matchers )
42
42
return args .Get (0 ).([]string ), args .Error (1 )
43
43
}
@@ -49,11 +49,11 @@ func (m *MockDistributor) LabelNamesStream(ctx context.Context, from model.Time,
49
49
args := m .Called (ctx , from , to , hints , matchers )
50
50
return args .Get (0 ).([]string ), args .Error (1 )
51
51
}
52
- func (m * MockDistributor ) MetricsForLabelMatchers (ctx context.Context , from , through model.Time , hint * storage.SelectHints , partialDataEnabled bool , matchers ... * labels.Matcher ) ([]model.Metric , error ) {
52
+ func (m * MockDistributor ) MetricsForLabelMatchers (ctx context.Context , from , to model.Time , hints * storage.SelectHints , partialDataEnabled bool , matchers ... * labels.Matcher ) ([]model.Metric , error ) {
53
53
args := m .Called (ctx , from , to , hints , matchers )
54
54
return args .Get (0 ).([]model.Metric ), args .Error (1 )
55
55
}
56
- func (m * MockDistributor ) MetricsForLabelMatchersStream (ctx context.Context , from , through model.Time , hint * storage.SelectHints , partialDataEnabled bool , matchers ... * labels.Matcher ) ([]model.Metric , error ) {
56
+ func (m * MockDistributor ) MetricsForLabelMatchersStream (ctx context.Context , from , to model.Time , hints * storage.SelectHints , partialDataEnabled bool , matchers ... * labels.Matcher ) ([]model.Metric , error ) {
57
57
args := m .Called (ctx , from , to , hints , matchers )
58
58
return args .Get (0 ).([]model.Metric ), args .Error (1 )
59
59
}
0 commit comments