-
Notifications
You must be signed in to change notification settings - Fork 68
/
write_metrics.go
49 lines (43 loc) · 1.53 KB
/
write_metrics.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
48
49
// Copyright (c) 2017 Uber Technologies, Inc.
//
// 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.
package metrics
import (
"time"
"github.com/uber/jaeger-lib/metrics"
)
// WriteMetrics is a collection of metrics for write operations.
type WriteMetrics struct {
Attempts metrics.Counter `metric:"attempts"`
Inserts metrics.Counter `metric:"inserts"`
Errors metrics.Counter `metric:"errors"`
LatencyOk metrics.Timer `metric:"latency-ok"`
LatencyErr metrics.Timer `metric:"latency-err"`
}
// NewWriteMetrics takes a metrics scope and creates a metrics struct
func NewWriteMetrics(factory metrics.Factory, tableName string) *WriteMetrics {
t := &WriteMetrics{}
metrics.Init(t, factory.Namespace(tableName, nil), nil)
return t
}
// Emit will record success or failure counts and latency metrics depending on the passed error.
func (t *WriteMetrics) Emit(err error, latency time.Duration) {
t.Attempts.Inc(1)
if err != nil {
t.LatencyErr.Record(latency)
t.Errors.Inc(1)
} else {
t.LatencyOk.Record(latency)
t.Inserts.Inc(1)
}
}