2015-01-21 19:07:45 +00:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
2013-02-25 01:52:52 +00: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 09:55:07 +00:00
|
|
|
package scrape
|
2013-02-25 01:52:52 +00:00
|
|
|
|
|
|
|
import (
|
2020-07-24 14:10:51 +00:00
|
|
|
"context"
|
2021-03-16 09:47:45 +00:00
|
|
|
"math/rand"
|
2020-10-22 09:00:08 +00:00
|
|
|
|
2021-03-16 09:47:45 +00:00
|
|
|
"github.com/prometheus/prometheus/pkg/exemplar"
|
2016-12-29 08:27:30 +00:00
|
|
|
"github.com/prometheus/prometheus/pkg/labels"
|
2016-12-30 20:35:35 +00:00
|
|
|
"github.com/prometheus/prometheus/storage"
|
2013-02-25 01:52:52 +00:00
|
|
|
)
|
|
|
|
|
2016-12-30 20:35:35 +00:00
|
|
|
type nopAppendable struct{}
|
|
|
|
|
2020-07-24 14:10:51 +00:00
|
|
|
func (a nopAppendable) Appender(_ context.Context) storage.Appender {
|
2020-02-06 15:58:38 +00:00
|
|
|
return nopAppender{}
|
2016-12-30 20:35:35 +00:00
|
|
|
}
|
|
|
|
|
2015-03-15 02:36:15 +00:00
|
|
|
type nopAppender struct{}
|
|
|
|
|
2021-02-18 12:07:00 +00:00
|
|
|
func (a nopAppender) Append(uint64, labels.Labels, int64, float64) (uint64, error) { return 0, nil }
|
2021-03-16 09:47:45 +00:00
|
|
|
func (a nopAppender) AppendExemplar(uint64, labels.Labels, exemplar.Exemplar) (uint64, error) {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
func (a nopAppender) Commit() error { return nil }
|
|
|
|
func (a nopAppender) Rollback() error { return nil }
|
2015-03-15 02:36:15 +00:00
|
|
|
|
2019-07-15 06:54:22 +00:00
|
|
|
type sample struct {
|
|
|
|
metric labels.Labels
|
|
|
|
t int64
|
|
|
|
v float64
|
|
|
|
}
|
|
|
|
|
2017-09-15 09:08:51 +00: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-15 02:36:15 +00:00
|
|
|
type collectResultAppender struct {
|
2020-07-16 11:53:39 +00:00
|
|
|
next storage.Appender
|
|
|
|
result []sample
|
|
|
|
pendingResult []sample
|
|
|
|
rolledbackResult []sample
|
2021-03-16 09:47:45 +00:00
|
|
|
pendingExemplars []exemplar.Exemplar
|
|
|
|
resultExemplars []exemplar.Exemplar
|
2015-03-15 02:36:15 +00:00
|
|
|
}
|
2013-08-13 14:14:18 +00:00
|
|
|
|
2021-02-18 12:07:00 +00:00
|
|
|
func (a *collectResultAppender) Append(ref uint64, lset labels.Labels, t int64, v float64) (uint64, error) {
|
2020-07-16 11:53:39 +00:00
|
|
|
a.pendingResult = append(a.pendingResult, sample{
|
2021-02-18 12:07:00 +00:00
|
|
|
metric: lset,
|
2017-09-15 09:08:51 +00:00
|
|
|
t: t,
|
|
|
|
v: v,
|
|
|
|
})
|
2017-01-13 13:48:01 +00:00
|
|
|
|
2021-03-16 09:47:45 +00:00
|
|
|
if ref == 0 {
|
|
|
|
ref = rand.Uint64()
|
|
|
|
}
|
2017-09-15 09:08:51 +00:00
|
|
|
if a.next == nil {
|
2021-03-16 09:47:45 +00:00
|
|
|
return ref, nil
|
2017-09-15 09:08:51 +00:00
|
|
|
}
|
2020-02-06 15:58:38 +00:00
|
|
|
|
2021-02-18 12:07:00 +00:00
|
|
|
ref, err := a.next.Append(ref, lset, t, v)
|
2020-02-06 15:58:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2021-02-18 12:07:00 +00:00
|
|
|
return ref, err
|
2013-08-13 14:14:18 +00:00
|
|
|
}
|
2015-04-20 10:24:25 +00:00
|
|
|
|
2021-03-16 09:47:45 +00:00
|
|
|
func (a *collectResultAppender) AppendExemplar(ref uint64, l labels.Labels, e exemplar.Exemplar) (uint64, error) {
|
|
|
|
a.pendingExemplars = append(a.pendingExemplars, e)
|
|
|
|
if a.next == nil {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return a.next.AppendExemplar(ref, l, e)
|
|
|
|
}
|
|
|
|
|
2020-07-16 11:53:39 +00:00
|
|
|
func (a *collectResultAppender) Commit() error {
|
|
|
|
a.result = append(a.result, a.pendingResult...)
|
2021-03-16 09:47:45 +00:00
|
|
|
a.resultExemplars = append(a.resultExemplars, a.pendingExemplars...)
|
2020-07-16 11:53:39 +00:00
|
|
|
a.pendingResult = nil
|
2021-03-16 09:47:45 +00:00
|
|
|
a.pendingExemplars = nil
|
2020-07-16 11:53:39 +00:00
|
|
|
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()
|
|
|
|
}
|