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"
|
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{}
|
|
|
|
|
2020-02-06 15:58:38 +00: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-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
|
2020-02-06 15:58:38 +00:00
|
|
|
|
|
|
|
mapper map[uint64]labels.Labels
|
2015-03-15 02:36:15 +00:00
|
|
|
}
|
2013-08-13 14:14:18 +00:00
|
|
|
|
2020-02-06 15:58:38 +00:00
|
|
|
func (a *collectResultAppender) AddFast(ref uint64, t int64, v float64) error {
|
2017-09-15 09:08:51 +00:00
|
|
|
if a.next == nil {
|
|
|
|
return storage.ErrNotFound
|
|
|
|
}
|
2020-02-06 15:58:38 +00:00
|
|
|
|
|
|
|
err := a.next.AddFast(ref, t, v)
|
2017-09-15 09:08:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-07-16 11:53:39 +00:00
|
|
|
a.pendingResult = append(a.pendingResult, sample{
|
2020-02-06 15:58:38 +00:00
|
|
|
metric: a.mapper[ref],
|
2017-09-15 09:08:51 +00:00
|
|
|
t: t,
|
|
|
|
v: v,
|
|
|
|
})
|
|
|
|
return err
|
2017-01-13 13:48:01 +00:00
|
|
|
}
|
|
|
|
|
2017-09-07 12:14:41 +00:00
|
|
|
func (a *collectResultAppender) Add(m labels.Labels, t int64, v float64) (uint64, error) {
|
2020-07-16 11:53:39 +00:00
|
|
|
a.pendingResult = append(a.pendingResult, sample{
|
2017-04-11 14:42:17 +00:00
|
|
|
metric: m,
|
2016-12-29 08:27:30 +00:00
|
|
|
t: t,
|
|
|
|
v: v,
|
|
|
|
})
|
2017-09-15 09:08:51 +00:00
|
|
|
if a.next == nil {
|
|
|
|
return 0, nil
|
|
|
|
}
|
2020-02-06 15:58:38 +00: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 14:14:18 +00:00
|
|
|
}
|
2015-04-20 10:24:25 +00:00
|
|
|
|
2020-07-16 11:53:39 +00: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()
|
|
|
|
}
|