-
Notifications
You must be signed in to change notification settings - Fork 64
/
common-log-messages.yml
101 lines (78 loc) · 4.79 KB
/
common-log-messages.yml
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
messages:
# Info messages
# 000-099
# General messages
# 100-199
- key: org.zowe.apiml.common.gatewayNotFoundForTransformRequest
number: ZWEAO102
type: ERROR
text: "Gateway not yet discovered. The Transform service cannot perform the request"
reason: "The Transform service was requested to transform a url, but the Gateway instance was not discovered."
action: "Do not begin performing requests until the API Mediation Layer fully initializes after startup. Check that your Discovery service is running and that all services (especially the Gateway) are discovered correctly."
- key: org.zowe.apiml.common.gatewayInstanceInitializerStopped
number: ZWEAO104
type: WARNING
text: "GatewayInstanceInitializer has been stopped due to exception: %s"
reason: "An unexpected exception occurred while retrieving the Gateway service instance from the Discovery Service."
action: "Check that both the service and the Gateway can register with Discovery. If the services are not registering, investigate the reason why. If no cause can be determined, create an issue."
- key: org.zowe.apiml.common.gatewayRouteConnectionLimitReached
number: ZWEAO105
type: WARNING
text: "Gateway HTTP Client per-route connection limit (maxConnectionsPerRoute) of %s has been reached for the '%s' route."
reason: "Too many concurrent connection requests were made to the same route."
action: "Further connections will be queued until there is room in the connection pool. You may also increase the per-route connection limit via the gateway start-up script by setting the Gateway configuration for maxConnectionsPerRoute."
- key: org.zowe.apiml.common.totalConnectionLimitReached
number: ZWEAO106
type: WARNING
text: "Gateway HTTP Client total connection limit (maxTotalConnections) of %s has been reached."
reason: "Too many concurrent connection requests were made."
action: "Further connections will be queued until there is room in the connection pool. You may also increase the total connection limit via the gateway start-up script by setting the Gateway configuration for maxTotalConnections."
# HTTP,Protocol messages
# 400-499
- key: org.zowe.apiml.common.badRequest
number: ZWEAO400
type: ERROR
reason: "A value in the request is missing or contains an invalid value."
action: "Fix the request and try again."
text: "The structure of the request is invalid: %s"
- key: org.zowe.apiml.common.unknownHttpsConfigError
number: ZWEAO401
type: ERROR
text: "Unknown error in HTTPS configuration: '%s'"
reason: "An Unknown error occurred while setting up an HTTP client during service initialization, followed by a system exit."
action: "Start the service again in debug mode to get a more descriptive message. This error indicates it is not a configuration issue."
- key: org.zowe.apiml.common.unauthorized
number: ZWEAO402
type: ERROR
text: "The request has not been applied because it lacks valid authentication credentials."
reason: "The accessed resource requires authentication. The request is missing valid authentication credentials or the token expired."
action: "Review the product documentation for more details about acceptable authentication. Verify that your credentials are valid and contact security administrator to obtain valid credentials."
- key: org.zowe.apiml.common.notFound
number: ZWEAO404
type: ERROR
text: "The service can not find the requested resource."
- key: org.zowe.apiml.common.methodNotAllowed
number: ZWEAO405
type: ERROR
text: "The request method has been disabled and cannot be used for the requested resource."
- key: org.zowe.apiml.common.unsupportedMediaType
number: ZWEAO415
type: ERROR
text: "The media format of the requested data is not supported by the service, so the service has rejected the request."
# TLS,Certificate messages
# 500-599
- key: org.zowe.apiml.common.internalServerError
number: ZWEAO500
type: ERROR
text: "The service has encountered a situation it doesn't know how to handle. Please contact support for further assistance. More details are available in the log under the provided message instance ID"
- key: org.zowe.apiml.common.serviceUnavailable
number: ZWEAO503
type: ERROR
text: "The server is not ready to handle the request: %s"
reason: "The service is not ready to handle the request, it is being initialized or waiting for another service to start."
action: "Repeat the request later. Please contact support for further assistance."
# Various messages
# 600-699
# Service specific messages
# 700-999
# Legacy messages