-
Notifications
You must be signed in to change notification settings - Fork 78
/
info.go
122 lines (110 loc) · 3.07 KB
/
info.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// Copyright (C) 2019-2023 vdaas.org vald team <vald@vdaas.org>
//
// 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
//
// https://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 info
import (
"context"
"fmt"
"reflect"
"strconv"
"github.com/vdaas/vald/internal/observability/attribute"
"github.com/vdaas/vald/internal/observability/metrics"
"go.opentelemetry.io/otel/sdk/metric/aggregation"
"go.opentelemetry.io/otel/sdk/metric/view"
)
type info struct {
name string
description string
kvs map[string]string
}
// New creates new general info metric according to the provided struct.
func New(name, description string, i interface{}) metrics.Metric {
return &info{
name: name,
description: description,
kvs: labelKVs(i),
}
}
func labelKVs(i interface{}) map[string]string {
rt, rv := reflect.TypeOf(i), reflect.ValueOf(i)
kvs := make(map[string]string, rt.NumField())
for k := 0; k < rt.NumField(); k++ {
keyName := rt.Field(k).Tag.Get("info")
if keyName == "" {
continue
}
var value string
switch v := rv.Field(k); v.Kind() {
case reflect.String:
value = v.String()
case reflect.Slice, reflect.Array:
switch v.Interface().(type) {
case []string:
value = fmt.Sprintf("%.255s", fmt.Sprintf("%v", v.Interface()))
case []rune:
value = v.Convert(reflect.TypeOf("")).String()
default:
continue
}
case reflect.Bool:
value = strconv.FormatBool(v.Bool())
case reflect.Int, reflect.Int8, reflect.Int16,
reflect.Int32, reflect.Int64:
value = strconv.FormatInt(v.Int(), 10)
case reflect.Uint, reflect.Uint8, reflect.Uint16,
reflect.Uint32, reflect.Uint64, reflect.Uintptr:
value = strconv.FormatUint(v.Uint(), 10)
case reflect.Float32, reflect.Float64:
value = strconv.FormatFloat(v.Float(), 'E', -1, 64)
default:
continue
}
kvs[keyName] = value
}
return kvs
}
func (i *info) View() ([]*metrics.View, error) {
info, err := view.New(
view.MatchInstrumentName(i.name),
view.WithSetDescription(i.description),
view.WithSetAggregation(aggregation.LastValue{}),
)
if err != nil {
return nil, err
}
return []*metrics.View{
&info,
}, nil
}
func (i *info) Register(m metrics.Meter) error {
info, err := m.AsyncInt64().Gauge(
i.name,
metrics.WithDescription(i.description),
metrics.WithUnit(metrics.Dimensionless),
)
if err != nil {
return err
}
return m.RegisterCallback(
[]metrics.AsynchronousInstrument{
info,
},
func(ctx context.Context) {
attrs := make([]attribute.KeyValue, 0, len(i.kvs))
for key, val := range i.kvs {
attrs = append(attrs, attribute.String(key, val))
}
info.Observe(ctx, 1, attrs...)
},
)
}