aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/docker/backend/chef-repo/cookbooks/sdc-catalog-be/files/default/ecomp-error-configuration.yaml
blob: 9d7cd74a2b4e9ec87018a7a4374bf47e832860d7 (plain)
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
###########################################
# Note the conventions of the field values:
# type can be one of: CONFIG_ERROR, SYSTEM_ERROR, DATA_ERROR, CONNECTION_PROBLEM, AUTHENTICATION_PROBLEM
# severity can be one of: WARN, ERROR, FATAL
# alarmSeverity can be one of: CRITICAL,MAJOR,MINOR,INFORMATIONAL,NONE
# code is a unique integer in range of 3003-9999 (3000-3002 are occupied for internal usage)
# The above enumeration values are out-of-the-box and can be changed in code. 
# In case of config and code mismatch, the appropriate error will be printed to log
#
## Range of BE codes - 3010-7999

errors:

    BeRestApiGeneralError: {
        type: SYSTEM_ERROR,
        code: ASDC_4000,
        severity: ERROR,
        description: "Unexpected error during BE REST API execution",
        alarmSeverity: CRITICAL
    }

    BeHealthCheckError: {
        type: SYSTEM_ERROR,
        code: ASDC_3010,
        severity: ERROR,
        description: "Error during BE Health Check",
        alarmSeverity: CRITICAL
    }
    
    BeInitializationError: {
        type: SYSTEM_ERROR,
        code: ASDC_4019,
        severity: ERROR,
        description: "Catalog-BE was not initialized properly",
        alarmSeverity: CRITICAL
    }

    BeResourceMissingError: {
        type: SYSTEM_ERROR,
        code: ASDC_3011,
        severity: ERROR,
        description: "Mandatory resource %s cannot be found in repository",
        alarmSeverity: MAJOR
    }
    
    BeServiceMissingError: {
        type: SYSTEM_ERROR,
        code: ASDC_3012,
        severity: ERROR,
        description: "Mandatory service %s cannot be found in repository",
        alarmSeverity: MAJOR
    }
    
    BeFailedAddingResourceInstanceError: {
        type: SYSTEM_ERROR,
        code: ASDC_3013,
        severity: ERROR,
        description: "Failed to add resource instance of resource %s to service %s",
        alarmSeverity: MAJOR
    }
    
    BeIncorrectServiceError: {
        type: SYSTEM_ERROR,
        code: ASDC_3014,
        severity: ERROR,
        description: "Service %s is not valid",
        alarmSeverity: MAJOR
    }
     
    BeRepositoryDeleteError: {
        type: SYSTEM_ERROR,
        code: ASDC_3015,
        severity: ERROR,
        description: "Failed to delete object %s from repository",
        alarmSeverity: CRITICAL
    }
    
    BeRepositoryQueryError: {
        type: SYSTEM_ERROR,
        code: ASDC_3016,
        severity: ERROR,
        description: "Failed to fetch from repository %s",
        alarmSeverity: MAJOR
    }
    
    BeInvalidConfigurationError: {
        type: CONFIG_ERROR,
        code: ASDC_3017,
        severity: FATAL,
        description: "Configuration parameter %s is invalid. Value configured is %s",
        alarmSeverity: MAJOR
    }
   
    BeUebConnectionError: {
        type: CONNECTION_PROBLEM,
        code: ASDC_4001,
        severity: ERROR,
        description: "Connection problem towards U-EB server. Reason: %s",
        alarmSeverity: MAJOR
    }
    
    BeUebSystemError: {
        type: SYSTEM_ERROR,
        code: ASDC_3019,
        severity: ERROR,
        description: "Error occured during access to U-EB Server. Operation: %s",
        alarmSeverity: MAJOR
    }
    
    BeUebObjectNotFoundError: {
        type: DATA_ERROR,
        code: ASDC_4005,
        severity: ERROR,
        description: "Error occured during access to U-EB Server. Data not found: %s",
        alarmSeverity: MAJOR
    }

    BeDistributionEngineSystemError: {
        type: SYSTEM_ERROR,
        code: ASDC_3021,
        severity: ERROR,
        description: "Error occured in Distribution Engine. Failed operation: %s",
        alarmSeverity: MAJOR
    }
    
    BeUebAuthenticationError: {
        type: AUTHENTICATION_PROBLEM,
        code: ASDC_4003,
        severity: ERROR,
        description: "Authentication problem towards U-EB server. Reason: %s",
        alarmSeverity: MAJOR
    }
    
    BeUebUnkownHostError: {
        type: CONNECTION_PROBLEM,
        code: ASDC_4002,
        severity: ERROR,
        description: "Connection problem towards U-EB server. Cannot reach host %s",
        alarmSeverity: MAJOR
    }
    
    BeDistributionEngineInvalidArtifactType: {
        type: DATA_ERROR,
        code: ASDC_4006,
        severity: WARN,
        description: "The artifact type %s does not appear in the list of valid artifacts %s",
        alarmSeverity: MAJOR
    }
    BeInvalidTypeError: {
        type: DATA_ERROR,
        code: ASDC_4008,
        severity: WARN,
        description: "The type %s of %s is invalid",
        alarmSeverity: MAJOR
    }
    BeInvalidValueError: {
        type: DATA_ERROR,
        code: ASDC_3028,
        severity: WARN,
        description: "The value %s of %s from type %s is invalid",
        alarmSeverity: MAJOR
    } 
    
    BeFailedDeletingResourceInstanceError: {
        type: SYSTEM_ERROR,
        code: ASDC_3029,
        severity: ERROR,
        description: "Failed to delete resource instance %s from service %s",
        alarmSeverity: MAJOR
    }
    
    BeMissingConfigurationError: {
        type: CONFIG_ERROR,
        code: ASDC_3030,
        severity: FATAL,
        description: "Configuration parameter %s is missing",
        alarmSeverity: MAJOR
    }
    
    BeConfigurationInvalidListSizeError: {
        type: CONFIG_ERROR,
        code: ASDC_3031,
        severity: FATAL,
        description: "Configuration parameter %s is invalid. At least %s values shall be configured",
        alarmSeverity: MAJOR
    }
    
    ErrorConfigFileFormat: {
        type: CONFIG_ERROR,
        code: ASDC_3032,
        severity: ERROR,
        description: "Error element not found in YAML name: %s",
        alarmSeverity: MAJOR
    }
    
    BeMissingArtifactInformationError: {
        type: DATA_ERROR,
        code: ASDC_4010,
        severity: ERROR,
        description: "Artifact uploaded has missing information. Missing %s",
        alarmSeverity: MAJOR
    }
    
    BeArtifactMissingError: {
        type: DATA_ERROR,
        code: ASDC_4011,
        severity: ERROR,
        description: "Artifact %s requested is not found",
        alarmSeverity: MAJOR
    }
    
    BeArtifactPayloadInvalid: {
        type: DATA_ERROR,
        code: ASDC_4012,
        severity: ERROR,
        description: "Payload of artifact uploaded is invalid (invalid MD5 or encryption)",
        alarmSeverity: MAJOR
    }
    
    BeUserMissingError: {
        type: DATA_ERROR,
        code: ASDC_4009,
        severity: ERROR,
        description: "User %s requested is not found",
        alarmSeverity: MAJOR
    }
    
    BeArtifactInformationInvalidError: {
        type: DATA_ERROR,
        code: ASDC_4013,
        severity: ERROR,
        description: "Input for artifact metadata is invalid",
        alarmSeverity: MAJOR
    }
    BeFailedAddingCapabilityTypeError: {
        type: DATA_ERROR,
        code: ASDC_4015,
        severity: ERROR,
        description: "Failed adding capability type",
        alarmSeverity: CRITICAL
    }
    
    BeCapabilityTypeMissingError: {
        type: DATA_ERROR,
        code: ASDC_4016,
        severity: ERROR,
        description: "Capability Type %s not found",
        alarmSeverity: CRITICAL
    }
    
    BeInterfaceMissingError: {
        type: DATA_ERROR,
        code: ASDC_4020,
        severity: ERROR,
        description: "Interface %s required is missing",
        alarmSeverity: MAJOR
    }
    
    BeDaoSystemError: {
        type: SYSTEM_ERROR,
        code: ASDC_4014,
        severity: ERROR,
        description: "Operation towards database failed",
        alarmSeverity: CRITICAL
    }
    
    BeSystemError: {
        type: SYSTEM_ERROR,
        code: ASDC_4017,
        severity: ERROR,
        description: "Unexpected error during operation",
        alarmSeverity: CRITICAL
    }
    
    BeFailedLockObjectError: {
        type: SYSTEM_ERROR,
        code: ASDC_4007,
        severity: WARN,
        description: "Failed to lock object for update",
        alarmSeverity: CRITICAL
    }
    
    BeInvalidJsonInput: {
        type: SYSTEM_ERROR,
        code: ASDC_4018,
        severity: ERROR,
        description: "Failed to convert json input to object",
        alarmSeverity: MAJOR
    }
    
    BeDistributionMissingError: {
        type: DATA_ERROR,
        code: ASDC_4021,
        severity: ERROR,
        description: "Distribution %s required is missing",
        alarmSeverity: MAJOR
    }
    
    BeHealthCheckRecovery: {
        type: RECOVERY,
        code: ASDC_4022,
        severity: INFO,
        description: "BE Health Check Recovery",
        alarmSeverity: INFORMATIONAL
    }
    BeFailedCreateNodeError: {
        type: DATA_ERROR,
        code: ASDC_6000,
        severity: ERROR,
        description: "Failed to create node %s on graph. status is %s",
        alarmSeverity: MAJOR
    }
    BeFailedUpdateNodeError: {
        type: DATA_ERROR,
        code: ASDC_6001,
        severity: ERROR,
        description: "Failed to update node %s on graph. Status is %s",
        alarmSeverity: MAJOR
    }
    
    BeFailedDeleteNodeError: {
        type: DATA_ERROR,
        code: ASDC_6002,
        severity: ERROR,
        description: "Failed to delete node %s on graph. Status is %s",
        alarmSeverity: MAJOR
    }
    
    BeFailedRetrieveNodeError: {
        type: DATA_ERROR,
        code: ASDC_6003,
        severity: ERROR,
        description: "Failed to retrieve node %s from graph. Status is %s",
        alarmSeverity: MAJOR
    }
    
    BeExecuteRollbackError: {
        type: DATA_ERROR,
        code: ASDC_6004,
        severity: ERROR,
        description: "Going to execute rollback on graph.",
        alarmSeverity: MAJOR
    }
    
    BeFailedFindParentError: {
        type: DATA_ERROR,
        code: ASDC_6005,
        severity: ERROR,
        description: "Failed to find parent node %s on graph. Status is %s",
        alarmSeverity: MAJOR
    }
    
    BeFailedFindAllNodesError: {
        type: DATA_ERROR,
        code: ASDC_6006,
        severity: ERROR,
        description: "Failed to fetch all nodes with type %s of parent node %s . Status is %s",
        alarmSeverity: MAJOR
    }
    
    BeFailedFindAssociationError: {
        type: DATA_ERROR,
        code: ASDC_6007,
        severity: ERROR,
        description: "Cannot find node with type %s associated with node %s . Status is %s",
        alarmSeverity: MAJOR
    }
    
    BeFailedFindAssociationError: {
        type: DATA_ERROR,
        code: ASDC_6008,
        severity: ERROR,
        description: "Cannot find node with type %s associated with node %s . Status is %s",
        alarmSeverity: MAJOR
    }
    BeComponentCleanerSystemError: {
        type: SYSTEM_ERROR,
        code: ASDC_6009,
        severity: ERROR,
        description: "Error occured in Component Cleaner Task. Failed operation: %s",
        alarmSeverity: MAJOR
    }