2015-01-06 17:35:57 +03:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
|
|
|
// A simple example exposing fictional RPC latencies with different types of
|
|
|
|
// random distributions (uniform, normal, and exponential) as Prometheus
|
|
|
|
// metrics.
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
2015-01-06 19:02:26 +03:00
|
|
|
"math"
|
2015-01-06 17:35:57 +03:00
|
|
|
"math/rand"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-01-06 19:02:26 +03:00
|
|
|
addr = flag.String("listen-address", ":8080", "The address to listen on for HTTP requests.")
|
|
|
|
uniformDomain = flag.Float64("uniform.domain", 200, "The domain for the uniform distribution.")
|
|
|
|
normDomain = flag.Float64("exponential.domain", 200, "The domain for the normal distribution.")
|
|
|
|
normMean = flag.Float64("exponential.mean", 10, "The mean for the normal distribution.")
|
|
|
|
oscillationPeriod = flag.Duration("oscillation-period", 10*time.Minute, "The duration of the rate oscillation period.")
|
2015-01-06 17:35:57 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// Create a summary to track fictional interservice RPC latencies for three
|
|
|
|
// distinct services with different latency distributions. These services are
|
|
|
|
// differentiated via a "service" label.
|
|
|
|
rpcDurations = prometheus.NewSummaryVec(
|
|
|
|
prometheus.SummaryOpts{
|
|
|
|
Name: "rpc_durations_microseconds",
|
|
|
|
Help: "RPC latency distributions.",
|
|
|
|
},
|
|
|
|
[]string{"service"},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// Register the summary with Prometheus's default registry.
|
|
|
|
prometheus.MustRegister(rpcDurations)
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
|
2015-01-06 19:02:26 +03:00
|
|
|
start := time.Now()
|
|
|
|
|
|
|
|
oscillationFactor := func() float64 {
|
|
|
|
return 2 + math.Sin(math.Sin(2*math.Pi*float64(time.Since(start))/float64(*oscillationPeriod)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Periodically record some sample latencies for the three services.
|
2015-01-06 17:35:57 +03:00
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
rpcDurations.WithLabelValues("uniform").Observe(rand.Float64() * *uniformDomain)
|
2015-01-06 19:02:26 +03:00
|
|
|
time.Sleep(time.Duration(100*oscillationFactor()) * time.Millisecond)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
for {
|
2015-01-06 17:35:57 +03:00
|
|
|
rpcDurations.WithLabelValues("normal").Observe((rand.NormFloat64() * *normDomain) + *normMean)
|
2015-01-06 19:02:26 +03:00
|
|
|
time.Sleep(time.Duration(75*oscillationFactor()) * time.Millisecond)
|
|
|
|
}
|
|
|
|
}()
|
2015-01-06 17:35:57 +03:00
|
|
|
|
2015-01-06 19:02:26 +03:00
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
rpcDurations.WithLabelValues("exponential").Observe(rand.ExpFloat64())
|
|
|
|
time.Sleep(time.Duration(50*oscillationFactor()) * time.Millisecond)
|
2015-01-06 17:35:57 +03:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Expose the registered metrics via HTTP.
|
|
|
|
http.Handle("/metrics", prometheus.Handler())
|
|
|
|
http.ListenAndServe(*addr, nil)
|
|
|
|
}
|