Skip to content

Commit de5b5a3

Browse files
committed
more rpc methods for app metrics
1 parent e39fae8 commit de5b5a3

File tree

2 files changed

+60
-2
lines changed

2 files changed

+60
-2
lines changed

cmd/rr/http/metrics.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func newCollector() *metricCollector {
5555
),
5656
requestDuration: prometheus.NewHistogramVec(
5757
prometheus.HistogramOpts{
58-
Name: "rr_http_request_seconds",
58+
Name: "rr_http_request_duration_seconds",
5959
Help: "HTTP request duration.",
6060
},
6161
[]string{"status"},

service/metrics/rpc.go

+59-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77

88
type rpcServer struct{ svc *Service }
99

10+
// Metric represent single metric produced by the application.
1011
type Metric struct {
1112
// Collector name.
1213
Name string
@@ -71,6 +72,63 @@ func (rpc *rpcServer) Add(m *Metric, ok *bool) error {
7172
return nil
7273
}
7374

75+
// Sub subtract the value from the specific metric (gauge only).
76+
func (rpc *rpcServer) Sub(m *Metric, ok *bool) error {
77+
c := rpc.svc.Collector(m.Name)
78+
if c == nil {
79+
return fmt.Errorf("undefined collector `%s`", m.Name)
80+
}
81+
82+
switch c.(type) {
83+
case prometheus.Gauge:
84+
c.(prometheus.Gauge).Sub(m.Value)
85+
86+
case *prometheus.GaugeVec:
87+
if len(m.Labels) == 0 {
88+
return fmt.Errorf("required labels for collector `%s`", m.Name)
89+
}
90+
91+
c.(*prometheus.GaugeVec).WithLabelValues(m.Labels...).Sub(m.Value)
92+
default:
93+
return fmt.Errorf("collector `%s` does not support method `Sub`", m.Name)
94+
}
95+
96+
*ok = true
97+
return nil
98+
}
99+
100+
// Observe the value (histogram and summary only).
101+
func (rpc *rpcServer) Observe(m *Metric, ok *bool) error {
102+
c := rpc.svc.Collector(m.Name)
103+
if c == nil {
104+
return fmt.Errorf("undefined collector `%s`", m.Name)
105+
}
106+
107+
switch c.(type) {
108+
case *prometheus.SummaryVec:
109+
if len(m.Labels) == 0 {
110+
return fmt.Errorf("required labels for collector `%s`", m.Name)
111+
}
112+
113+
c.(*prometheus.SummaryVec).WithLabelValues(m.Labels...).Observe(m.Value)
114+
115+
case prometheus.Histogram:
116+
c.(prometheus.Histogram).Observe(m.Value)
117+
118+
case *prometheus.HistogramVec:
119+
if len(m.Labels) == 0 {
120+
return fmt.Errorf("required labels for collector `%s`", m.Name)
121+
}
122+
123+
c.(*prometheus.HistogramVec).WithLabelValues(m.Labels...).Observe(m.Value)
124+
default:
125+
return fmt.Errorf("collector `%s` does not support method `Observe`", m.Name)
126+
}
127+
128+
*ok = true
129+
return nil
130+
}
131+
74132
// Set the metric value (only for gaude).
75133
func (rpc *rpcServer) Set(m *Metric, ok *bool) error {
76134
c := rpc.svc.Collector(m.Name)
@@ -90,7 +148,7 @@ func (rpc *rpcServer) Set(m *Metric, ok *bool) error {
90148
c.(*prometheus.GaugeVec).WithLabelValues(m.Labels...).Set(m.Value)
91149

92150
default:
93-
return fmt.Errorf("collector `%s` is not `gauge` type", m.Name)
151+
return fmt.Errorf("collector `%s` does not support method `Set`", m.Name)
94152
}
95153

96154
*ok = true

0 commit comments

Comments
 (0)