mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
56f069b3ec
Pointer arguments to copies.
57 lines
1.9 KiB
Go
57 lines
1.9 KiB
Go
// Copyright 2013 Prometheus Team
|
|
// 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 metric
|
|
|
|
import (
|
|
"github.com/prometheus/prometheus/model"
|
|
"time"
|
|
)
|
|
|
|
type StalenessPolicy struct {
|
|
DeltaAllowance time.Duration
|
|
}
|
|
|
|
// MetricPersistence is a system for storing metric samples in a persistence
|
|
// layer.
|
|
type MetricPersistence interface {
|
|
// A storage system may rely on external resources and thusly should be
|
|
// closed when finished.
|
|
Close() error
|
|
|
|
// Record a new sample in the storage layer.
|
|
AppendSample(model.Sample) error
|
|
|
|
// Get all of the metric fingerprints that are associated with the provided
|
|
// label set.
|
|
GetFingerprintsForLabelSet(model.LabelSet) ([]*model.Fingerprint, error)
|
|
|
|
// Get all of the metric fingerprints that are associated for a given label
|
|
// name.
|
|
GetFingerprintsForLabelName(model.LabelName) ([]*model.Fingerprint, error)
|
|
|
|
GetMetricForFingerprint(model.Fingerprint) (*model.Metric, error)
|
|
|
|
GetValueAtTime(model.Metric, time.Time, StalenessPolicy) (*model.Sample, error)
|
|
GetBoundaryValues(*model.Metric, *model.Interval, *StalenessPolicy) (*model.Sample, *model.Sample, error)
|
|
GetRangeValues(*model.Metric, *model.Interval, *StalenessPolicy) (*model.SampleSet, error)
|
|
|
|
GetAllMetricNames() ([]string, error)
|
|
|
|
// DIAGNOSTIC FUNCTIONS PENDING DELETION BELOW HERE
|
|
|
|
GetAllLabelNames() ([]string, error)
|
|
GetAllLabelPairs() ([]model.LabelSet, error)
|
|
GetAllMetrics() ([]model.LabelSet, error)
|
|
}
|