-
Notifications
You must be signed in to change notification settings - Fork 1
/
set_fact_action.go
212 lines (181 loc) · 5.64 KB
/
set_fact_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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
package main
import (
"errors"
"fmt"
"log/slog"
)
// ***************************************************************************************
// ***************************************************************************************
// set_fact
// ***************************************************************************************
// ***************************************************************************************
type SetFactAction 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 [][]any `yaml:"vars,omitempty" json:"vars,omitempty"`
Until []*exporterTemplate `yaml:"until,omitempty" json:"until,omitempty"`
SetFact map[string]any `yaml:"set_fact" json:"set_fact"`
setFact [][]any
vars [][]any
}
func (a *SetFactAction) Type() int {
return set_fact_action
}
func (a *SetFactAction) 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 *SetFactAction) GetNameField() *Field {
return a.Name
}
func (a *SetFactAction) SetNameField(name *Field) {
a.Name = name
}
func (a *SetFactAction) GetWidh() []any {
return a.With
}
func (a *SetFactAction) SetWidth(with []any) {
a.With = with
}
func (a *SetFactAction) GetWhen() []*exporterTemplate {
return a.When
}
func (a *SetFactAction) SetWhen(when []*exporterTemplate) {
a.When = when
}
func (a *SetFactAction) GetLoopVar() string {
return a.LoopVar
}
func (a *SetFactAction) SetLoopVar(loopvar string) {
a.LoopVar = loopvar
}
func (a *SetFactAction) GetVars() [][]any {
return a.vars
}
func (a *SetFactAction) SetVars(vars [][]any) {
a.vars = vars
}
func (a *SetFactAction) GetUntil() []*exporterTemplate {
return a.Until
}
func (a *SetFactAction) SetUntil(until []*exporterTemplate) {
a.Until = until
}
func (a *SetFactAction) 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 *SetFactAction) PlayAction(script *YAMLScript, symtab map[string]any, logger *slog.Logger) error {
return PlayBaseAction(script, symtab, logger, a, a.CustomAction)
}
// only for MetricsAction
func (a *SetFactAction) GetMetrics() []*GetMetricsRes {
return nil
}
// only for MetricAction
func (a *SetFactAction) GetMetric() *MetricConfig {
return nil
}
func (a *SetFactAction) SetMetricFamily(*MetricFamily) {
}
// only for PlayAction
func (a *SetFactAction) SetPlayAction(scripts map[string]*YAMLScript) error {
return nil
}
// specific behavior for the SetStatsAction
// it does nothing at all... it is only en entry point for calling target to collect
// vars from the collector and so to make them persistent accross calls
func (a *SetFactAction) CustomAction(script *YAMLScript, symtab map[string]any, logger *slog.Logger) error {
var (
key_name string
err error
value_name any
)
logger.Debug(
"[Type: SetFactAction]",
"collid", CollectorId(symtab, logger),
"script", ScriptName(symtab, logger),
"name", a.GetName(symtab, logger))
for _, pair := range a.setFact {
if pair == nil {
return errors.New("set_fact: invalid key value")
}
if key, ok := pair[0].(*Field); ok {
key_name, err = key.GetValueString(symtab, nil, false)
if err == nil {
if value_name, err = ValorizeValue(symtab, pair[1], logger, a.GetName(symtab, logger), 0); err != nil {
return err
}
if value_name == nil {
logger.Debug(
fmt.Sprintf(" remove from symbols table: %s", key_name),
"collid", CollectorId(symtab, logger),
"script", ScriptName(symtab, logger),
"name", a.GetName(symtab, logger))
DeleteSymtab(symtab, key_name)
} else {
if key_name != "_" {
logger.Debug(
fmt.Sprintf(" add to symbols table: %s = '%v'", key_name, value_name),
"collid", CollectorId(symtab, logger),
"script", ScriptName(symtab, logger),
"name", a.GetName(symtab, logger))
if err := SetSymTab(symtab, key_name, value_name); err != nil {
logger.Warn(
fmt.Sprintf("error setting map value for key '%s'", key_name), "errmsg", err,
"collid", CollectorId(symtab, logger),
"script", ScriptName(symtab, logger),
"name", a.GetName(symtab, logger))
continue
}
} else {
logger.Debug(
" result discard (key >'_')",
"collid", CollectorId(symtab, logger),
"script", ScriptName(symtab, logger),
"name", a.GetName(symtab, logger))
}
}
}
}
}
return nil
}
func (a *SetFactAction) AddCustomTemplate(customTemplate *exporterTemplate) error {
if err := AddCustomTemplate(a, customTemplate); err != nil {
return err
}
for _, pair := range a.setFact {
if pair == nil {
return errors.New("set_fact: invalid key value")
}
if key, ok := pair[0].(*Field); ok {
if key != nil {
if err := key.AddDefaultTemplate(customTemplate); err != nil {
return err
}
}
if pair[1] != nil {
if err := AddCustomTemplateElement(pair[1], customTemplate); err != nil {
return fmt.Errorf("error in set_fact value: %s", err)
}
}
}
}
return nil
}
// ***************************************************************************************