prometheus/storage/metric/instrumentation.go

97 lines
4.2 KiB
Go
Raw Normal View History

// 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.
2013-02-08 17:03:26 +00:00
package metric
import (
"github.com/prometheus/client_golang"
"github.com/prometheus/client_golang/maths"
"github.com/prometheus/client_golang/metrics"
2013-01-23 16:18:45 +00:00
"time"
)
const (
operation = "operation"
success = "success"
failure = "failure"
result = "result"
appendFingerprints = "append_fingerprints"
appendLabelNameFingerprint = "append_label_name_fingerprint"
appendLabelPairFingerprint = "append_label_pair_fingerprint"
appendSample = "append_sample"
2013-02-08 17:03:26 +00:00
appendSamples = "append_samples"
2013-03-14 23:55:50 +00:00
findUnindexedMetrics = "find_unindexed_metrics"
2013-03-01 17:51:36 +00:00
flushMemory = "flush_memory"
2013-01-23 16:18:45 +00:00
getBoundaryValues = "get_boundary_values"
getFingerprintsForLabelName = "get_fingerprints_for_label_name"
getFingerprintsForLabelSet = "get_fingerprints_for_labelset"
getLabelNameFingerprints = "get_label_name_fingerprints"
getMetricForFingerprint = "get_metric_for_fingerprint"
getRangeValues = "get_range_values"
getValueAtTime = "get_value_at_time"
hasIndexMetric = "has_index_metric"
hasLabelName = "has_label_name"
hasLabelPair = "has_label_pair"
indexFingerprints = "index_fingerprints"
indexLabelNames = "index_label_names"
indexLabelPairs = "index_label_pairs"
2013-01-23 16:18:45 +00:00
indexMetric = "index_metric"
2013-03-14 23:55:50 +00:00
indexMetrics = "index_metrics"
2013-03-01 17:51:36 +00:00
rebuildDiskFrontier = "rebuild_disk_frontier"
2013-03-15 02:24:28 +00:00
refreshHighWatermarks = "refresh_high_watermarks"
2013-03-01 17:51:36 +00:00
renderView = "render_view"
2013-01-23 16:18:45 +00:00
setLabelNameFingerprints = "set_label_name_fingerprints"
setLabelPairFingerprints = "set_label_pair_fingerprints"
2013-03-01 17:51:36 +00:00
writeMemory = "write_memory"
cutOff = "recency_threshold"
processorName = "processor"
)
var (
diskLatencyHistogram = &metrics.HistogramSpecification{
Starts: metrics.LogarithmicSizedBucketsFor(0, 5000),
2013-01-23 16:18:45 +00:00
BucketBuilder: metrics.AccumulatingBucketBuilder(metrics.EvictAndReplaceWith(10, maths.Average), 100),
ReportablePercentiles: []float64{0.01, 0.05, 0.5, 0.90, 0.99},
}
2013-03-26 11:33:48 +00:00
curationDuration = metrics.NewCounter()
curationDurations = metrics.NewHistogram(diskLatencyHistogram)
curationFilterOperations = metrics.NewCounter()
2013-03-01 17:51:36 +00:00
storageOperations = metrics.NewCounter()
storageOperationDurations = metrics.NewCounter()
storageLatency = metrics.NewHistogram(diskLatencyHistogram)
2013-03-07 01:16:39 +00:00
queueSizes = metrics.NewGauge()
)
2013-03-01 17:51:36 +00:00
func recordOutcome(duration time.Duration, err error, success, failure map[string]string) {
2013-01-23 16:18:45 +00:00
labels := success
if err != nil {
labels = failure
}
2013-03-01 17:51:36 +00:00
storageOperations.Increment(labels)
asFloat := float64(duration / time.Microsecond)
storageLatency.Add(labels, asFloat)
storageOperationDurations.IncrementBy(labels, asFloat)
2013-01-23 16:18:45 +00:00
}
func init() {
2013-01-23 16:18:45 +00:00
registry.Register("prometheus_metric_disk_operations_total", "Total number of metric-related disk operations.", registry.NilLabels, storageOperations)
registry.Register("prometheus_metric_disk_latency_microseconds", "Latency for metric disk operations in microseconds.", registry.NilLabels, storageLatency)
2013-03-01 17:51:36 +00:00
registry.Register("prometheus_storage_operation_time_total_microseconds", "The total time spent performing a given storage operation.", registry.NilLabels, storageOperationDurations)
2013-03-07 01:16:39 +00:00
registry.Register("prometheus_storage_queue_sizes_total", "The various sizes and capacities of the storage queues.", registry.NilLabels, queueSizes)
registry.Register("curation_filter_operations_total", "The number of curation filter operations completed.", registry.NilLabels, curationFilterOperations)
}