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.
|
|
|
|
|
2018-02-01 01:55:07 -08:00
|
|
|
package scrape
|
2013-02-24 17:52:52 -08:00
|
|
|
|
|
|
|
import (
|
2020-07-24 07:10:51 -07:00
|
|
|
"context"
|
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{}
|
|
|
|
|
2020-07-24 07:10:51 -07:00
|
|
|
func (a nopAppendable) Appender(_ context.Context) storage.Appender {
|
2020-02-06 07:58:38 -08:00
|
|
|
return nopAppender{}
|
2016-12-30 12:35:35 -08:00
|
|
|
}
|
|
|
|
|
2015-03-14 19:36:15 -07:00
|
|
|
type nopAppender struct{}
|
|
|
|
|
2020-02-06 07:58:38 -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
|
|
|
|
2019-07-14 23:54:22 -07:00
|
|
|
type sample struct {
|
|
|
|
metric labels.Labels
|
|
|
|
t int64
|
|
|
|
v float64
|
|
|
|
}
|
|
|
|
|
2017-09-15 02:08:51 -07:00
|
|
|
// collectResultAppender records all samples that were added through the appender.
|
|
|
|
// It can be used as its zero value or be backed by another appender it writes samples through.
|
2015-03-14 19:36:15 -07:00
|
|
|
type collectResultAppender struct {
|
2020-07-16 04:53:39 -07:00
|
|
|
next storage.Appender
|
|
|
|
result []sample
|
|
|
|
pendingResult []sample
|
|
|
|
rolledbackResult []sample
|
2020-02-06 07:58:38 -08:00
|
|
|
|
|
|
|
mapper map[uint64]labels.Labels
|
2015-03-14 19:36:15 -07:00
|
|
|
}
|
2013-08-13 07:14:18 -07:00
|
|
|
|
2020-02-06 07:58:38 -08:00
|
|
|
func (a *collectResultAppender) AddFast(ref uint64, t int64, v float64) error {
|
2017-09-15 02:08:51 -07:00
|
|
|
if a.next == nil {
|
|
|
|
return storage.ErrNotFound
|
|
|
|
}
|
2020-02-06 07:58:38 -08:00
|
|
|
|
|
|
|
err := a.next.AddFast(ref, t, v)
|
2017-09-15 02:08:51 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-07-16 04:53:39 -07:00
|
|
|
a.pendingResult = append(a.pendingResult, sample{
|
2020-02-06 07:58:38 -08:00
|
|
|
metric: a.mapper[ref],
|
2017-09-15 02:08:51 -07:00
|
|
|
t: t,
|
|
|
|
v: v,
|
|
|
|
})
|
|
|
|
return err
|
2017-01-13 05:48:01 -08:00
|
|
|
}
|
|
|
|
|
2017-09-07 05:14:41 -07:00
|
|
|
func (a *collectResultAppender) Add(m labels.Labels, t int64, v float64) (uint64, error) {
|
2020-07-16 04:53:39 -07:00
|
|
|
a.pendingResult = append(a.pendingResult, sample{
|
2017-04-11 07:42:17 -07:00
|
|
|
metric: m,
|
2016-12-29 00:27:30 -08:00
|
|
|
t: t,
|
|
|
|
v: v,
|
|
|
|
})
|
2017-09-15 02:08:51 -07:00
|
|
|
if a.next == nil {
|
|
|
|
return 0, nil
|
|
|
|
}
|
2020-02-06 07:58:38 -08:00
|
|
|
|
|
|
|
if a.mapper == nil {
|
|
|
|
a.mapper = map[uint64]labels.Labels{}
|
|
|
|
}
|
|
|
|
|
|
|
|
ref, err := a.next.Add(m, t, v)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
a.mapper[ref] = m
|
|
|
|
return ref, nil
|
2013-08-13 07:14:18 -07:00
|
|
|
}
|
2015-04-20 03:24:25 -07:00
|
|
|
|
2020-07-16 04:53:39 -07:00
|
|
|
func (a *collectResultAppender) Commit() error {
|
|
|
|
a.result = append(a.result, a.pendingResult...)
|
|
|
|
a.pendingResult = nil
|
|
|
|
if a.next == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return a.next.Commit()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *collectResultAppender) Rollback() error {
|
|
|
|
a.rolledbackResult = a.pendingResult
|
|
|
|
a.pendingResult = nil
|
|
|
|
if a.next == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return a.next.Rollback()
|
|
|
|
}
|