-
Notifications
You must be signed in to change notification settings - Fork 77
/
version.go
118 lines (103 loc) · 2.81 KB
/
version.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
//
// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt )
//
// 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 version provides version info metrics functions
package version
import (
"context"
"fmt"
"reflect"
"strings"
"github.com/vdaas/vald/internal/info"
"github.com/vdaas/vald/internal/observability/metrics"
)
var reps = strings.NewReplacer("_", " ", ",omitempty", "")
type version struct {
info metrics.Int64Measure
kvs map[metrics.Key]string
}
func New(labels ...string) (metrics.Metric, error) {
kvs, err := labelKVs(labels...)
if err != nil {
return nil, err
}
return &version{
info: *metrics.Int64(metrics.ValdOrg+"/version/info", "app version info", metrics.UnitDimensionless),
kvs: kvs,
}, nil
}
func labelKVs(labels ...string) (map[metrics.Key]string, error) {
labelMap := make(map[string]struct{}, len(labels))
for _, label := range labels {
labelMap[reps.Replace(label)] = struct{}{}
}
d := info.Get()
rt, rv := reflect.TypeOf(d), reflect.ValueOf(d)
info := make(map[metrics.Key]string, rt.NumField())
for i := 0; i < rt.NumField(); i++ {
keyName := reps.Replace(rt.Field(i).Tag.Get("json"))
if _, ok := labelMap[keyName]; !ok {
continue
}
v := rv.Field(i).Interface()
value, ok := v.(string)
if !ok {
ss, ok := v.([]string)
if ok {
k, err := metrics.NewKey(keyName)
if err != nil {
return nil, err
}
// tags must be less than 255 characters
info[k] = fmt.Sprintf("%.255s", fmt.Sprintf("%v", ss))
}
continue
}
if value != "" {
k, err := metrics.NewKey(keyName)
if err != nil {
return nil, err
}
info[k] = value
}
}
return info, nil
}
func (v *version) Measurement(ctx context.Context) ([]metrics.Measurement, error) {
return []metrics.Measurement{}, nil
}
func (v *version) MeasurementWithTags(ctx context.Context) ([]metrics.MeasurementWithTags, error) {
return []metrics.MeasurementWithTags{
{
Measurement: v.info.M(int64(1)),
Tags: v.kvs,
},
}, nil
}
func (v *version) View() []*metrics.View {
keys := make([]metrics.Key, 0, len(v.kvs))
for k := range v.kvs {
keys = append(keys, k)
}
return []*metrics.View{
{
Name: "app_version_info",
Description: v.info.Description(),
TagKeys: keys,
Measure: &v.info,
Aggregation: metrics.LastValue(),
},
}
}