-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
285 lines (261 loc) · 9.06 KB
/
main.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
//https://github.com/sl1pm4t/k2tf/blob/master/main.go
// Adapted to convert mimir prometheus yaml rules to HashiCorp's Terraform configuration language.
package main
import (
"fmt"
"os"
"strconv"
"strings"
flag "github.com/spf13/pflag"
"github.com/hashicorp/hcl/hcl/printer"
"github.com/hashicorp/hcl2/hclwrite"
"github.com/rs/zerolog/log"
)
// Build time variables
var (
version = "dev"
commit = "none"
date = "unknown"
)
// Command line flags
var (
debug bool
input string
output string
noColor bool
overwriteExisting bool
tf12format bool
printVersion bool
reverse bool
)
func init() {
// init command line flags
flag.BoolVarP(&debug, "debug", "d", false, "enable debug output")
flag.StringVarP(&input, "filepath", "f", "-", `file or directory that contains the YAML configuration to convert. Use "-" to read from stdin`)
flag.StringVarP(&output, "output", "o", "-", `file or directory where Terraform config will be written`)
flag.BoolVarP(&overwriteExisting, "overwrite-existing", "x", false, "allow overwriting existing output file(s)")
flag.BoolVarP(&tf12format, "tf12format", "F", false, `Use Terraform 0.12 formatter`)
flag.BoolVarP(&printVersion, "version", "v", false, `Print mimir2tf version`)
flag.BoolVarP(&reverse, "reverse", "r", false, `Reverse mode (hcl to yaml)`)
flag.Parse()
setupLogOutput()
}
func main() {
if printVersion {
fmt.Printf("mimir2tf version: %s\n", version)
os.Exit(0)
}
log.Debug().
Str("version", version).
Str("commit", commit).
Str("builddate", date).
Msg("starting mimir2tf")
w, closer := SetupOutput(output, overwriteExisting)
defer closer()
if reverse {
objs := ReadHCLInput(input)
content := "groups:\n"
for _, obj := range objs {
for key, value := range obj["resource"].(map[string]interface{}) {
if key == "mimir_rule_group_alerting" {
for _, alertgroups := range value.(map[string]interface{}) {
for _, alertgroup := range alertgroups.([]interface{}) {
content += fmt.Sprintf("- name: %s\n rules:\n", alertgroup.(map[string]interface{})["name"].(string))
rules := alertgroup.(map[string]interface{})["rule"].([]interface{})
for _, rule := range rules {
content += fmt.Sprintf(" - alert: %s\n", rule.(map[string]interface{})["alert"].(string))
expr := rule.(map[string]interface{})["expr"].(string)
if strings.Contains(expr, "\n") {
content += fmt.Sprintf(" expr: |\n")
for _, line := range strings.Split(expr, "\n") {
content += fmt.Sprintf(" %s\n", line)
}
} else {
content += fmt.Sprintf(" expr: %s\n", expr)
}
if _, ok := rule.(map[string]interface{})["for"]; ok {
content += fmt.Sprintf(" for: %s\n", rule.(map[string]interface{})["for"].(string))
}
if _, ok := rule.(map[string]interface{})["labels"]; ok {
labels := rule.(map[string]interface{})["labels"].(map[string]interface{})
if len(labels) > 0 {
content += fmt.Sprintf(" labels:\n")
for lname, lvalue := range labels {
content += fmt.Sprintf(" %s: %s\n", lname, lvalue)
}
}
}
if _, ok := rule.(map[string]interface{})["annotations"]; ok {
annotations := rule.(map[string]interface{})["annotations"].(map[string]interface{})
if len(annotations) > 0 {
content += fmt.Sprintf(" annotations:\n")
for aname, avalue := range annotations {
content += fmt.Sprintf(" %s: %s\n", aname, strconv.Quote(avalue.(string)))
}
}
}
}
}
}
}
if key == "mimir_rule_group_recording" {
for _, recordgroups := range value.(map[string]interface{}) {
for _, recordgroup := range recordgroups.([]interface{}) {
content += fmt.Sprintf("- name: %s\n rules:\n", recordgroup.(map[string]interface{})["name"].(string))
rules := recordgroup.(map[string]interface{})["rule"].([]interface{})
for _, rule := range rules {
content += fmt.Sprintf(" - record: %s\n", rule.(map[string]interface{})["record"].(string))
expr := rule.(map[string]interface{})["expr"].(string)
if strings.Contains(expr, "\n") {
content += fmt.Sprintf(" expr: |\n")
for _, line := range strings.Split(expr, "\n") {
content += fmt.Sprintf(" %s\n", line)
}
} else {
content += fmt.Sprintf(" expr: %s\n", expr)
}
if _, ok := rule.(map[string]interface{})["labels"]; ok {
labels := rule.(map[string]interface{})["labels"].(map[string]interface{})
if len(labels) > 0 {
content += fmt.Sprintf(" labels:\n")
for lname, lvalue := range labels {
content += fmt.Sprintf(" %s: %s\n", lname, lvalue)
}
}
}
}
}
}
}
}
}
fmt.Fprint(w, content)
fmt.Fprintln(w)
os.Exit(0)
}
objs := ReadYAMLInput(input)
var resources []string
// generate mimir_rule_group_alerting terraform resources
for _, obj := range objs {
for _, group := range obj.Groups {
var alertingRule bool
var resource string
resource = fmt.Sprintf("resource \"mimir_rule_group_alerting\" \"%s\" {\n", group.Name)
resource += fmt.Sprintf("name = \"%s\"\n", group.Name)
if obj.Namespace != "" {
resource += fmt.Sprintf("namespace = \"%s\"\n", obj.Namespace)
}
for _, rule := range group.Rules {
var ruleName string
if rule.Alert.Value != "" {
ruleName = rule.Alert.Value
alertingRule = true
} else {
continue
}
resource += fmt.Sprintf("rule {\n")
resource += fmt.Sprintf("alert = \"%s\"\n", ruleName)
ruleExpr := strings.TrimSuffix(rule.Expr.Value, "\n")
if strings.Contains(ruleExpr, "\n") {
resource += fmt.Sprintf("expr = <<EOT\n%s\nEOT\n", ruleExpr)
} else if strings.Contains(ruleExpr, "\"") {
resource += fmt.Sprintf("expr = \"%s\"\n", strings.ReplaceAll(ruleExpr, "\"", "\\\""))
} else {
resource += fmt.Sprintf("expr = \"%s\"\n", ruleExpr)
}
if rule.For != 0 {
resource += fmt.Sprintf("for = \"%s\"\n", rule.For)
}
if len(rule.Labels) > 0 {
resource += fmt.Sprintf("labels = {\n")
for lname, lvalue := range rule.Labels {
resource += fmt.Sprintf("%s = \"%s\"\n", lname, lvalue)
}
resource += fmt.Sprintf("}\n")
}
if len(rule.Annotations) > 0 {
resource += fmt.Sprintf("annotations = {\n")
for aname, avalue := range rule.Annotations {
annotValue := strings.TrimSuffix(avalue, "\n")
if strings.Contains(annotValue, "\n") {
resource += fmt.Sprintf("%s = <<EOT\n%s\nEOT\n", aname, annotValue)
} else if strings.Contains(annotValue, "\"") {
resource += fmt.Sprintf("%s = \"%s\"\n", aname, strings.ReplaceAll(annotValue, "\"", "\\\""))
} else {
resource += fmt.Sprintf("%s = \"%s\"\n", aname, strings.ReplaceAll(annotValue, "\"", "\\\""))
}
}
resource += fmt.Sprintf("}\n")
}
resource += fmt.Sprintf("}\n")
}
resource += fmt.Sprintf("}\n")
if alertingRule {
resources = append(resources, resource)
}
}
}
// generate mimir_rule_group_recording terraform resources
for _, obj := range objs {
for _, group := range obj.Groups {
var recordingRule bool
var resource string
resource = fmt.Sprintf("resource \"mimir_rule_group_recording\" \"%s\" {\n", group.Name)
resource += fmt.Sprintf("name = \"%s\"\n", group.Name)
if obj.Namespace != "" {
resource += fmt.Sprintf("namespace = \"%s\"\n", obj.Namespace)
}
for _, rule := range group.Rules {
var ruleName string
if rule.Record.Value != "" {
ruleName = rule.Record.Value
recordingRule = true
} else {
continue
}
resource += fmt.Sprintf("rule {\n")
resource += fmt.Sprintf("record = \"%s\"\n", ruleName)
ruleExpr := strings.TrimSuffix(rule.Expr.Value, "\n")
if strings.Contains(ruleExpr, "\n") {
resource += fmt.Sprintf("expr = <<EOT\n%s\nEOT\n", ruleExpr)
} else if strings.Contains(ruleExpr, "\"") {
resource += fmt.Sprintf("expr = \"%s\"\n", strings.ReplaceAll(ruleExpr, "\"", "\\\""))
} else {
resource += fmt.Sprintf("expr = \"%s\"\n", ruleExpr)
}
if len(rule.Labels) > 0 {
resource += fmt.Sprintf("labels = {\n")
for lname, lvalue := range rule.Labels {
resource += fmt.Sprintf("%s = \"%s\"\n", lname, lvalue)
}
resource += fmt.Sprintf("}\n")
}
resource += fmt.Sprintf("}\n")
}
resource += fmt.Sprintf("}\n")
if recordingRule {
resources = append(resources, resource)
}
}
}
// output and format terraform resources
for _, resource := range resources {
formatted := formatObject([]byte(resource))
fmt.Fprint(w, string(formatted))
fmt.Fprintln(w)
}
}
func formatObject(in []byte) []byte {
var result []byte
var err error
if tf12format {
result = hclwrite.Format(in)
} else {
result, err = printer.Format(in)
if err != nil {
log.Error().Err(err).Msg("could not format object")
return in
}
}
return result
}