-
Notifications
You must be signed in to change notification settings - Fork 0
/
prometheus.go
47 lines (40 loc) · 1.4 KB
/
prometheus.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package cherry
// Deprecated 使用opentelemetry
import (
grpcprom "github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus"
"github.com/hopeio/context/httpctx"
prometheus1 "github.com/hopeio/utils/net/http/prometheus"
prometheus2 "github.com/prometheus/client_golang/prometheus"
"time"
)
/*func init() {
sink, _ := prometheus.NewPrometheusSink()
conf := metrics.DefaultConfig("")
metrics1, _ := metrics.New(conf, sink)
metrics1.EnableHostnameLabel = true
http.Handle("/metrics", promhttp.Handler())
reg.MustRegister(srvMetrics)
}*/
var reg = prometheus2.NewRegistry()
type MetricsRecord = func(ctxi *httpctx.Context, uri, method string, code int)
var defaultMetricsRecord = func(ctxi *httpctx.Context, uri, method string, code int) {
labels := prometheus2.Labels{
"method": method,
"uri": uri,
}
t := time.Now().Sub(ctxi.RequestAt.Time)
prometheus1.AccessCounter.With(labels).Add(1)
prometheus1.QueueGauge.With(labels).Set(1)
prometheus1.HttpDurationsHistogram.With(labels).Observe(float64(t) / 1000)
prometheus1.HttpDurations.With(labels).Observe(float64(t) / 1000)
}
func SetMetricsRecord(metricsRecord MetricsRecord) {
if metricsRecord != nil {
defaultMetricsRecord = metricsRecord
}
}
var srvMetrics = grpcprom.NewServerMetrics(
grpcprom.WithServerHandlingTimeHistogram(
grpcprom.WithHistogramBuckets([]float64{0.001, 0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120}),
),
)