Browse Source

Adjust to new client_golang API.

pull/452/head
Bjoern Rabenstein 10 years ago
parent
commit
b09453af1d
  1. 2
      retrieval/target.go
  2. 2
      rules/manager/manager.go

2
retrieval/target.go

@ -54,7 +54,7 @@ var (
Namespace: namespace,
Name: "target_interval_length_seconds",
Help: "Actual intervals between scrapes.",
Objectives: []float64{0.01, 0.05, 0.5, 0.90, 0.99},
Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001},
},
[]string{interval},
)

2
rules/manager/manager.go

@ -59,7 +59,7 @@ var (
Namespace: namespace,
Name: "evaluator_duration_milliseconds",
Help: "The duration for all evaluations to execute.",
Objectives: []float64{0.01, 0.05, 0.5, 0.90, 0.99},
Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001},
})
)

Loading…
Cancel
Save