7
7
8
8
type rpcServer struct { svc * Service }
9
9
10
+ // Metric represent single metric produced by the application.
10
11
type Metric struct {
11
12
// Collector name.
12
13
Name string
@@ -71,6 +72,63 @@ func (rpc *rpcServer) Add(m *Metric, ok *bool) error {
71
72
return nil
72
73
}
73
74
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
+
74
132
// Set the metric value (only for gaude).
75
133
func (rpc * rpcServer ) Set (m * Metric , ok * bool ) error {
76
134
c := rpc .svc .Collector (m .Name )
@@ -90,7 +148,7 @@ func (rpc *rpcServer) Set(m *Metric, ok *bool) error {
90
148
c .(* prometheus.GaugeVec ).WithLabelValues (m .Labels ... ).Set (m .Value )
91
149
92
150
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 )
94
152
}
95
153
96
154
* ok = true
0 commit comments