2015-01-21 11:07:45 -08:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
2013-02-24 17:52:52 -08:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package retrieval
|
|
|
|
|
|
|
|
import (
|
2015-04-20 03:24:25 -07:00
|
|
|
"github.com/prometheus/prometheus/config"
|
2016-12-29 00:27:30 -08:00
|
|
|
"github.com/prometheus/prometheus/pkg/labels"
|
2016-12-30 12:35:35 -08:00
|
|
|
"github.com/prometheus/prometheus/storage"
|
2013-02-24 17:52:52 -08:00
|
|
|
)
|
|
|
|
|
2016-12-30 12:35:35 -08:00
|
|
|
type nopAppendable struct{}
|
|
|
|
|
|
|
|
func (a nopAppendable) Appender() (storage.Appender, error) {
|
|
|
|
return nopAppender{}, nil
|
|
|
|
}
|
|
|
|
|
2015-03-14 19:36:15 -07:00
|
|
|
type nopAppender struct{}
|
|
|
|
|
2017-02-20 02:11:44 -08:00
|
|
|
func (a nopAppender) Add(labels.Labels, int64, float64) (uint64, error) { return 0, nil }
|
|
|
|
func (a nopAppender) AddFast(uint64, int64, float64) error { return nil }
|
|
|
|
func (a nopAppender) Commit() error { return nil }
|
|
|
|
func (a nopAppender) Rollback() error { return nil }
|
2015-03-14 19:36:15 -07:00
|
|
|
|
|
|
|
type collectResultAppender struct {
|
2017-01-13 05:48:01 -08:00
|
|
|
refs map[uint64]labels.Labels
|
|
|
|
result []sample
|
2015-03-14 19:36:15 -07:00
|
|
|
}
|
2013-08-13 07:14:18 -07:00
|
|
|
|
2017-01-13 05:48:01 -08:00
|
|
|
func (a *collectResultAppender) SetSeries(l labels.Labels) (uint64, error) {
|
|
|
|
if a.refs == nil {
|
|
|
|
a.refs = map[uint64]labels.Labels{}
|
|
|
|
}
|
|
|
|
ref := uint64(len(a.refs))
|
|
|
|
a.refs[ref] = l
|
|
|
|
return ref, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *collectResultAppender) Add(ref uint64, t int64, v float64) error {
|
2016-12-29 00:27:30 -08:00
|
|
|
// for ln, lv := range s.Metric {
|
|
|
|
// if len(lv) == 0 {
|
|
|
|
// delete(s.Metric, ln)
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
a.result = append(a.result, sample{
|
2017-01-13 05:48:01 -08:00
|
|
|
metric: a.refs[ref],
|
2016-12-29 00:27:30 -08:00
|
|
|
t: t,
|
|
|
|
v: v,
|
|
|
|
})
|
2016-02-03 01:17:08 -08:00
|
|
|
return nil
|
2013-08-13 07:14:18 -07:00
|
|
|
}
|
2015-04-20 03:24:25 -07:00
|
|
|
|
2017-01-13 05:48:01 -08:00
|
|
|
func (a *collectResultAppender) Commit() error { return nil }
|
|
|
|
func (a *collectResultAppender) Rollback() error { return nil }
|
2016-01-27 10:07:46 -08:00
|
|
|
|
2015-04-20 03:24:25 -07:00
|
|
|
// fakeTargetProvider implements a TargetProvider and allows manual injection
|
|
|
|
// of TargetGroups through the update channel.
|
|
|
|
type fakeTargetProvider struct {
|
|
|
|
sources []string
|
|
|
|
update chan *config.TargetGroup
|
|
|
|
}
|
|
|
|
|
2015-10-08 09:06:58 -07:00
|
|
|
func (tp *fakeTargetProvider) Run(ch chan<- config.TargetGroup, done <-chan struct{}) {
|
2015-04-20 03:24:25 -07:00
|
|
|
defer close(ch)
|
2015-08-10 07:44:32 -07:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case tg := <-tp.update:
|
2015-10-08 09:06:58 -07:00
|
|
|
ch <- *tg
|
2015-08-10 07:44:32 -07:00
|
|
|
case <-done:
|
|
|
|
return
|
|
|
|
}
|
2015-04-20 03:24:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tp *fakeTargetProvider) Sources() []string {
|
|
|
|
return tp.sources
|
|
|
|
}
|