@@ -20,130 +20,130 @@ The following properties are available with all appenders:
20
20
| Default
21
21
| Description
22
22
23
- | ` exchangeName`
24
- | ` logs`
23
+ | exchangeName
24
+ | logs
25
25
| Name of the exchange to which to publish log events.
26
26
27
- | ` exchangeType`
28
- | ` topic`
27
+ | exchangeType
28
+ | topic
29
29
| Type of the exchange to which to publish log events -- needed only if the appender declares the exchange.
30
30
See `declareExchange`.
31
31
32
- | ` routingKeyPattern`
33
- | ` %c.%p`
32
+ | routingKeyPattern
33
+ | %c.%p
34
34
| Logging subsystem pattern format to use to generate a routing key.
35
35
36
- | ` applicationId`
36
+ | applicationId
37
37
|
38
38
| Application ID -- added to the routing key if the pattern includes `%X{applicationId}`.
39
39
40
- | ` senderPoolSize`
41
- | `2`
40
+ | senderPoolSize
41
+ | 2
42
42
| The number of threads to use to publish log events.
43
43
44
- | ` maxSenderRetries`
45
- | `30`
44
+ | maxSenderRetries
45
+ | 30
46
46
| How many times to retry sending a message if the broker is unavailable or there is some other error.
47
47
Retries are delayed as follows: `N ^ log(N)`, where `N` is the retry number.
48
48
49
- | ` addresses`
49
+ | addresses
50
50
|
51
51
| A comma-delimited list of broker addresses in the following form: `host:port[,host:port]*` - overrides `host` and `port`.
52
52
53
- | ` host`
54
- | ` localhost`
53
+ | host
54
+ | localhost
55
55
| RabbitMQ host to which to connect .
56
56
57
- | ` port`
58
- | ` 5672`
57
+ | port
58
+ | 5672
59
59
| RabbitMQ port to which to connect.
60
60
61
- | ` virtualHost`
62
- | `/`
61
+ | virtualHost
62
+ | /
63
63
| RabbitMQ virtual host to which to connect.
64
64
65
- | ` username`
66
- | ` guest`
65
+ | username
66
+ | guest
67
67
| RabbitMQ user to use when connecting.
68
68
69
- | ` password`
70
- | ` guest`
69
+ | password
70
+ | guest
71
71
| RabbitMQ password for this user.
72
72
73
- | ` useSsl`
74
- | ` false`
73
+ | useSsl
74
+ | false
75
75
| Whether to use SSL for the RabbitMQ connection.
76
76
See <<_rabbitconnectionfactorybean_and_configuring_ssl>>
77
77
78
- | ` sslAlgorithm`
79
- | ` null`
78
+ | sslAlgorithm
79
+ | null
80
80
| The SSL algorithm to use.
81
81
82
- | ` sslPropertiesLocation`
83
- | ` null`
82
+ | sslPropertiesLocation
83
+ | null
84
84
| Location of the SSL properties file.
85
85
86
- | ` keyStore`
87
- | ` null`
86
+ | keyStore
87
+ | null
88
88
| Location of the keystore.
89
89
90
- | ` keyStorePassphrase`
91
- | ` null`
90
+ | keyStorePassphrase
91
+ | null
92
92
| Passphrase for the keystore.
93
93
94
- | ` keyStoreType`
95
- | ` JKS`
94
+ | keyStoreType
95
+ | JKS
96
96
| The keystore type.
97
97
98
- | ` trustStore`
99
- | ` null`
98
+ | trustStore
99
+ | null
100
100
| Location of the truststore.
101
101
102
- | ` trustStorePassphrase`
103
- | ` null`
102
+ | trustStorePassphrase
103
+ | null
104
104
| Passphrase for the truststore.
105
105
106
- | ` trustStoreType`
107
- | ` JKS`
106
+ | trustStoreType
107
+ | JKS
108
108
| The truststore type.
109
109
110
- | ` contentType`
111
- | ` text/plain`
110
+ | contentType
111
+ | text/plain
112
112
| `content-type` property of log messages.
113
113
114
- | ` contentEncoding`
114
+ | contentEncoding
115
115
|
116
116
| `content-encoding` property of log messages.
117
117
118
- | ` declareExchange`
119
- | ` false`
118
+ | declareExchange
119
+ | false
120
120
| Whether or not to declare the configured exchange when this appender starts.
121
121
See also `durable` and `autoDelete`.
122
122
123
- | ` durable`
124
- | ` true`
123
+ | durable
124
+ | true
125
125
| When `declareExchange` is `true`, the durable flag is set to this value.
126
126
127
- | ` autoDelete`
128
- | ` false`
127
+ | autoDelete
128
+ | false
129
129
| When `declareExchange` is `true`, the auto-delete flag is set to this value.
130
130
131
- | ` charset`
132
- | ` null`
131
+ | charset
132
+ | null
133
133
| Character set to use when converting `String` to `byte[]`.
134
134
Default: null (the system default charset is used).
135
135
If the character set is unsupported on the current platform, we fall back to using the system character set.
136
136
137
- | ` deliveryMode`
138
- | ` PERSISTENT`
137
+ | deliveryMode
138
+ | PERSISTENT
139
139
| `PERSISTENT` or `NON_PERSISTENT` to determine whether or not RabbitMQ should persist the messages.
140
140
141
- | ` generateId`
142
- | ` false`
141
+ | generateId
142
+ | false
143
143
| Used to determine whether the `messageId` property is set to a unique value.
144
144
145
- | ` clientConnectionProperties`
146
- | ` null`
145
+ | clientConnectionProperties
146
+ | null
147
147
| A comma-delimited list of `key:value` pairs for custom client properties to the RabbitMQ connection.
148
148
149
149
|===
0 commit comments