mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/storage: add vm_ prefix to deduplicated_samples_total
metric to be conistent with other metrics
This commit is contained in:
parent
ec9bf39b5b
commit
d21cb43e48
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ func DeduplicateSamples(srcTimestamps []int64, srcValues []float64) ([]int64, []
|
||||||
return dstTimestamps, dstValues
|
return dstTimestamps, dstValues
|
||||||
}
|
}
|
||||||
|
|
||||||
var dedupsDuringSelect = metrics.NewCounter(`deduplicated_samples_total{type="select"}`)
|
var dedupsDuringSelect = metrics.NewCounter(`vm_deduplicated_samples_total{type="select"}`)
|
||||||
|
|
||||||
func deduplicateSamplesDuringMerge(srcTimestamps []int64, srcValues []int64) ([]int64, []int64) {
|
func deduplicateSamplesDuringMerge(srcTimestamps []int64, srcValues []int64) ([]int64, []int64) {
|
||||||
if minScrapeInterval <= 0 {
|
if minScrapeInterval <= 0 {
|
||||||
|
@ -94,7 +94,7 @@ func deduplicateSamplesDuringMerge(srcTimestamps []int64, srcValues []int64) ([]
|
||||||
return dstTimestamps, dstValues
|
return dstTimestamps, dstValues
|
||||||
}
|
}
|
||||||
|
|
||||||
var dedupsDuringMerge = metrics.NewCounter(`deduplicated_samples_total{type="merge"}`)
|
var dedupsDuringMerge = metrics.NewCounter(`vm_deduplicated_samples_total{type="merge"}`)
|
||||||
|
|
||||||
func needsDedup(timestamps []int64, minDelta int64) bool {
|
func needsDedup(timestamps []int64, minDelta int64) bool {
|
||||||
if len(timestamps) == 0 {
|
if len(timestamps) == 0 {
|
||||||
|
|
Loading…
Reference in a new issue