-
Notifications
You must be signed in to change notification settings - Fork 0
/
desc.go
63 lines (51 loc) · 919 Bytes
/
desc.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
package promgo
import (
"fmt"
"strings"
)
// Desc 指标描述信息
type Desc struct {
Namespace string
Name string
Help string
Type ValueType
Labels []string // 标签
}
// GetNamespace ...
func (d Desc) GetNamespace() string {
return d.Namespace
}
// GetName ...
func (d Desc) GetName() string {
return d.Name
}
// GetHelp ...
func (d Desc) GetHelp() string {
return d.Help
}
// GetType ...
func (d Desc) GetType() string {
return d.Type.String()
}
// ID 唯一标志
func (d Desc) ID() string {
id := fmt.Sprintf(`%s_%s`, d.Namespace, d.Name)
return strings.Trim(id, `_`)
}
// Descs ...
type Descs []*Desc
// Less 对比
func (d Descs) Less(i, j int) bool {
if strings.Compare(d[i].ID(), d[j].ID()) == 1 {
return false
}
return true
}
// Swap 交换
func (d Descs) Swap(i, j int) {
d[i], d[j] = d[j], d[i]
}
// Len 长度
func (d Descs) Len() int {
return len(d)
}