-
Notifications
You must be signed in to change notification settings - Fork 53
/
shared.go
343 lines (284 loc) · 8.34 KB
/
shared.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
/*
Shared definitions (constants & errors) for opni alerting
*/
package shared
import (
"bytes"
"fmt"
"strings"
"text/template"
"github.com/lithammer/shortuuid"
"github.com/prometheus/alertmanager/pkg/labels"
"github.com/prometheus/common/model"
"github.com/rancher/opni/pkg/validation"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
const SingleConfigId = "global"
const OpniAlertingCortexNamespace = "opni-alerting"
func NewAlertingRefId(prefixes ...string) string {
return strings.Join(append(prefixes, shortuuid.New()), "-")
}
// config ids
const InternalSlackId = "slack"
const InternalEmailId = "email"
const InternalPagerdutyId = "pagerduty"
const InternalWebhookId = "webhook"
const InternalPushoverId = "pushover"
const InternalSNSId = "sns"
const InternalTelegramId = "telegram"
const InternalDiscordId = "discord"
const InternalOpsGenieId = "opsgenie"
const InternalVictorOpsId = "victorops"
const InternalWechatId = "wechat"
// -------- const routing identifiers -----------
const OpniDatasourceLabel = "OpniDatasource"
const OpniSeverityLabel = "OpniSeverity"
const OpniUnbufferedKey = "OpniGroupKey"
const OpniBroadcastPrefix = "OpniBroadcast"
const OpniDatasourceMetricsValue = "metrics"
var OpniGroupByClause = []model.LabelName{
"alertname",
}
var OpniSubRoutingTreeMatcher *labels.Matcher = &labels.Matcher{
Type: labels.MatchEqual,
Name: OpniDatasourceLabel,
Value: "",
}
var OpniMetricsSubRoutingTreeMatcher *labels.Matcher = &labels.Matcher{
Type: labels.MatchEqual,
Name: OpniDatasourceLabel,
Value: OpniDatasourceMetricsValue,
}
var OpniSeverityTreeMatcher *labels.Matcher = &labels.Matcher{
Type: labels.MatchEqual,
Name: OpniSeverityLabel,
Value: "true",
}
type OpniReceiverId struct {
Namespace string
ReceiverId string
}
func NewOpniReceiverName(id OpniReceiverId) string {
return strings.Join([]string{"opni", id.Namespace, id.ReceiverId}, ".")
}
func ExtractReceiverId(receiverName string) (*OpniReceiverId, error) {
parts := strings.Split(receiverName, ".")
if len(parts) != 3 {
return nil, fmt.Errorf("invalid receiver name format: %s", receiverName)
}
return &OpniReceiverId{
Namespace: parts[1],
ReceiverId: parts[2],
}, nil
}
// Condition constants
var ComparisonOperators = []string{"<", ">", "<=", ">=", "=", "!="}
var KubeStates = []string{"Pending", "Running", "Succeeded", "Failed", "Unknown"}
const CortexDistributor = "distributor"
const CortexIngester = "ingester"
const CortexRuler = "ruler"
const CortexPurger = "purger"
const CortexCompactor = "compactor"
const CortexStoreGateway = "store-gateway"
const CortexQueryFrontend = "query-frontend"
const CortexQuerier = "querier"
var CortexComponents = []string{
CortexDistributor,
CortexIngester,
CortexRuler,
CortexPurger,
CortexCompactor,
CortexStoreGateway,
CortexQueryFrontend,
CortexQuerier,
}
// Storage types
const AgentDisconnectStorageType = "agent-disconnect"
// Datasources & Versioning
// labels
const OpniTitleLabel = "OpniTitleLabel"
const OpniBodyLabel = "OpniBodyLabel"
const BroadcastIdLabel = "broadcastId"
const BackendConditionIdLabel = "conditionId"
const BackendConditionNameLabel = "opniname"
const BackendConditionClusterIdLabel = "clusterId"
const BackendConditionSeverityLabel = "severity"
const (
AlertingV1Alpha = "v1alpha"
MonitoringDatasource = "monitoring"
LoggingDatasource = "logging"
SystemDatasource = "system"
)
// Operator container & service definitions
const (
ConfigMountPath = "/etc/config"
DataMountPath = "/var/lib"
AlertManagerConfigKey = "alertmanager.yaml"
InternalRoutingConfigKey = "internal-routing.yaml"
OperatorAlertingControllerServiceName = "opni-alerting-controller"
OperatorAlertingClusterNodeServiceName = "opni-alerting"
AlertingHookReceiverName = "opni.default.hook"
AlertingDefaultHookName = "/opni/hook"
AlertingDefaultHookPort = 3000
)
var (
PublicLabels = map[string]string{}
PublicServiceLabels = map[string]string{}
)
func LabelWithAlert(label map[string]string) map[string]string {
label["app.kubernetes.io/name"] = "opni-alerting"
return label
}
// Default Operator AM config
const route = `
route:
group_by: ['alertname']
group_wait: 30s
group_interval: 5m
repeat_interval: 1h
receiver : '{{ .CortexHandlerName }}'
`
/*
Original:
receivers:
- name: 'web.hook'
webhook_configs:
- url: 'http://127.0.0.1:5001/'
*/
const receivers = `
receivers:
- name: '{{ .CortexHandlerName }}'
webhook_configs:
- url: '{{ .CortexHandlerURL }}'
`
const inihibit_rules = `
inhibit_rules:
- source_match:
severity: 'critical'
target_match:
severity: 'warning'
equal: ['alertname', 'dev', 'instance']`
var DefaultAlertManager = template.Must(template.New("DefaultManagementHook").Parse(strings.Join([]string{
strings.TrimSpace(route),
receivers,
strings.TrimSpace(inihibit_rules),
}, "\n")))
type DefaultAlertManagerInfo struct {
CortexHandlerName string
CortexHandlerURL string
}
func DefaultAlertManagerConfig(managementUrl string) (bytes.Buffer, error) {
templateToFill := DefaultAlertManager
var b bytes.Buffer
err := templateToFill.Execute(&b, DefaultAlertManagerInfo{
CortexHandlerName: AlertingHookReceiverName,
CortexHandlerURL: managementUrl + AlertingDefaultHookName,
})
if err != nil {
return b, err
}
return b, nil
}
// Error declarations
var (
AlertingErrNotImplemented = WithUnimplementedError("Not implemented")
AlertingErrNotImplementedNOOP = WithUnimplementedError("Alerting NOOP : Not implemented")
AlertingErrParseBucket = WithInternalServerError("Failed to parse bucket index")
AlertingErrBucketIndexInvalid = WithInternalServerError("Bucket index is invalid")
AlertingErrInvalidSlackChannel = validation.Error("Slack channel invalid : must start with '#'")
AlertingErrK8sRuntime = WithInternalServerError("K8s Runtime error")
AlertingErrMismatchedImplementation = validation.Error("Alerting endpoint did not match the given implementation")
)
type UnimplementedError struct {
message string
}
type InternalServerError struct {
message string
}
type NotFoundError struct {
message string
}
type FailedPreconditionError struct {
message string
}
func (e *NotFoundError) Error() string {
return e.message
}
func (e *NotFoundError) GRPCStatus() *status.Status {
return status.New(codes.NotFound, e.message)
}
func WithNotFoundError(msg string) error {
return &NotFoundError{
message: msg,
}
}
func WithNotFoundErrorf(format string, args ...interface{}) error {
return &NotFoundError{
message: fmt.Errorf(format, args...).Error(),
}
}
func (e *InternalServerError) Error() string {
return e.message
}
func (e *InternalServerError) GRPCStatus() *status.Status {
return status.New(codes.Internal, e.message)
}
func WithInternalServerError(msg string) error {
return &InternalServerError{
message: msg,
}
}
func WithInternalServerErrorf(format string, args ...interface{}) error {
return &InternalServerError{
message: fmt.Errorf(format, args...).Error(),
}
}
func (e *UnimplementedError) Error() string {
return e.message
}
func (e *UnimplementedError) GRPCStatus() *status.Status {
return status.New(codes.Unimplemented, e.message)
}
func WithUnimplementedError(msg string) error {
return &UnimplementedError{
message: msg,
}
}
func WithUnimplementedErrorf(format string, args ...interface{}) error {
return &UnimplementedError{
message: fmt.Errorf(format, args...).Error(),
}
}
func (e *FailedPreconditionError) Error() string {
return e.message
}
func (e *FailedPreconditionError) GRPCStatus() *status.Status {
return status.New(codes.FailedPrecondition, e.message)
}
func WithFailedPreconditionError(msg string) error {
return &UnimplementedError{
message: msg,
}
}
func WithFailedPreconditionErrorf(format string, args ...interface{}) error {
return &UnimplementedError{
message: fmt.Errorf(format, args...).Error(),
}
}
func AlertManagerLabelsToAnnotations(m *labels.Matcher) (map[string]string, error) {
switch m.Type {
case labels.MatchEqual:
return map[string]string{
m.Name: m.Value,
}, nil
case labels.MatchNotEqual:
fallthrough
case labels.MatchRegexp:
fallthrough
case labels.MatchNotRegexp:
fallthrough
default:
return nil, fmt.Errorf("unsupported match type for internal routing %v", m.Type)
}
}