-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmetric_action.go
173 lines (145 loc) · 4.6 KB
/
metric_action.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
package main
import (
//"bytes"
"fmt"
"log/slog"
)
// ***************************************************************************************
// ***************************************************************************************
// metric fact
// ***************************************************************************************
// ***************************************************************************************
type MetricAction struct {
Name *Field `yaml:"name,omitempty" json:"name,omitempty"`
With []any `yaml:"with,omitempty" json:"with,omitempty"`
When []*exporterTemplate `yaml:"when,omitempty" json:"when,omitempty"`
LoopVar string `yaml:"loop_var,omitempty" json:"loop_var,omitempty"`
Vars map[string]any `yaml:"vars,omitempty" json:"vars,omitempty"`
Until []*exporterTemplate `yaml:"until,omitempty" json:"until,omitempty"`
mc *MetricConfig
metricFamily *MetricFamily
vars [][]any
// Catches all undefined fields and must be empty after parsing.
XXX map[string]interface{} `yaml:",inline" json:"-"`
}
func (a *MetricAction) Type() int {
return metric_action
}
func (a *MetricAction) GetName(symtab map[string]any, logger *slog.Logger) string {
str, err := a.Name.GetValueString(symtab, nil, false)
if err != nil {
logger.Warn(
fmt.Sprintf("invalid action name: %v", err),
"collid", CollectorId(symtab, logger),
"script", ScriptName(symtab, logger))
return ""
}
return str
}
func (a *MetricAction) GetNameField() *Field {
return a.Name
}
func (a *MetricAction) SetNameField(name *Field) {
a.Name = name
}
func (a *MetricAction) GetWidh() []any {
return a.With
}
func (a *MetricAction) SetWidth(with []any) {
a.With = with
}
func (a *MetricAction) GetWhen() []*exporterTemplate {
return a.When
}
func (a *MetricAction) SetWhen(when []*exporterTemplate) {
a.When = when
}
func (a *MetricAction) GetLoopVar() string {
return a.LoopVar
}
func (a *MetricAction) SetLoopVar(loopvar string) {
a.LoopVar = loopvar
}
func (a *MetricAction) GetVars() [][]any {
return a.vars
}
func (a *MetricAction) SetVars(vars [][]any) {
a.vars = vars
}
func (a *MetricAction) GetUntil() []*exporterTemplate {
return a.Until
}
func (a *MetricAction) SetUntil(until []*exporterTemplate) {
a.Until = until
}
func (a *MetricAction) setBasicElement(
nameField *Field,
vars [][]any,
with []any,
loopVar string,
when []*exporterTemplate,
until []*exporterTemplate) error {
return setBasicElement(a, nameField, vars, with, loopVar, when, until)
}
func (a *MetricAction) PlayAction(script *YAMLScript, symtab map[string]any, logger *slog.Logger) error {
return PlayBaseAction(script, symtab, logger, a, a.CustomAction)
}
// only for MetricsAction
func (a *MetricAction) GetMetrics() []*GetMetricsRes {
return nil
}
// only for MetricAction
func (a *MetricAction) GetMetric() *MetricConfig {
return a.mc
}
func (a *MetricAction) SetMetricFamily(mf *MetricFamily) {
a.metricFamily = mf
}
// only for PlayAction
func (a *MetricAction) SetPlayAction(scripts map[string]*YAMLScript) error {
return nil
}
// specific behavior for the MetricAction
func (a *MetricAction) CustomAction(script *YAMLScript, symtab map[string]any, logger *slog.Logger) error {
var (
metric_channel chan<- Metric
// mfs []*MetricFamily
)
loop_var_idx := ""
if raw_loop_var_idx, ok := symtab["loop_var_idx"].(int); ok {
if raw_loop_var_idx > 0 {
loop_var_idx = fmt.Sprintf(" %d", raw_loop_var_idx)
}
}
logger.Debug(
fmt.Sprintf("[Type: MetricAction] %s", loop_var_idx),
"collid", CollectorId(symtab, logger),
"script", ScriptName(symtab, logger),
"name", a.GetName(symtab, logger))
if r_val, ok := symtab["__metric_channel"]; ok {
if metric_channel, ok = r_val.(chan<- Metric); !ok {
panic(fmt.Sprintf("collid=\"%s\" script=\"%s\" name=\"%s\" msg=\"invalid context (channel wrong type)\"",
CollectorId(symtab, logger),
ScriptName(symtab, logger),
a.GetName(symtab, logger)))
}
} else {
panic(fmt.Sprintf("collid=\"%s\" script=\"%s\" name=\"%s\" msg=\"invalid context (channel not set)\"",
CollectorId(symtab, logger),
ScriptName(symtab, logger),
a.GetName(symtab, logger)))
}
logger.Debug(
fmt.Sprintf(" metric_name: %s", a.metricFamily.Name()),
"collid", CollectorId(symtab, logger),
"script", ScriptName(symtab, logger),
"name", a.GetName(symtab, logger))
a.metricFamily.Collect(symtab, logger, metric_channel)
return nil
}
func (a *MetricAction) AddCustomTemplate(customTemplate *exporterTemplate) error {
if err := AddCustomTemplate(a, customTemplate); err != nil {
return err
}
return nil
}