-
Notifications
You must be signed in to change notification settings - Fork 945
/
Copy pathadditional-spring-configuration-metadata.json
499 lines (499 loc) · 22.1 KB
/
additional-spring-configuration-metadata.json
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
{
"groups": [
{
"name": "otel"
}
],
"properties": [
{
"name": "otel.experimental.exporter.otlp.retry.enabled",
"type": "java.lang.Boolean",
"description": "Enable experimental retry support. See https://github.com/open-telemetry/opentelemetry-java/blob/main/sdk-extensions/autoconfigure/README.md#otlp-exporter-retry.",
"defaultValue": false
},
{
"name": "otel.exporter.otlp.certificate",
"type": "java.lang.String",
"description": "The path to the file containing trusted certificates to use when verifying an OTLP trace, metric, or log server's TLS credentials.<br/>The file should contain one or more X.509 certificates in PEM format.<br/>By default the host platform's trusted root certificates are used."
},
{
"name": "otel.exporter.otlp.client.certificate",
"type": "java.lang.String",
"description": "The path to the file containing trusted certificates to use when verifying an OTLP trace, metric, or log client's TLS credentials.<br/>The file should contain one or more X.509 certificates in PEM format.<br/>By default, no chain file is used."
},
{
"name": "otel.exporter.otlp.client.key",
"type": "java.lang.String",
"description": "The path to the file containing private client key to use when verifying an OTLP trace, metric, or log client's TLS credentials.<br/>The file should contain one private key PKCS8 PEM format.<br/>By default, no client key is used."
},
{
"name": "otel.exporter.otlp.compression",
"type": "java.lang.String",
"description": "The compression type to use on OTLP trace, metric, and log requests.<br/>Options include <code>gzip</code>.<br/>By default, no compression will be used."
},
{
"name": "otel.exporter.otlp.endpoint",
"type": "java.lang.String",
"description": "The OTLP traces, metrics, and logs endpoint to connect to.<br/>Must be a URL with a scheme of either <code>http</code> or <code>https</code> based on the use of TLS. If protocol is <code>http/protobuf</code> the version and signal will be appended to the path (e.g. <code>v1/traces</code>, <code>v1/metrics</code>, or <code>v1/logs</code>).<br/>Default is <code>http://localhost:4317</code> when protocol is <code>grpc</code>, and <code>http://localhost:4318/v1/{signal}</code> when protocol is <code>http/protobuf</code>."
},
{
"name": "otel.exporter.otlp.headers",
"type": "java.util.Map<java.lang.String, java.lang.String>",
"description": "Request headers for OTLP trace, metric, and log requests.<br/>Can be either a Spring map or a key-value separated String, e.g. <code>key1=value1,key2=value2</code>."
},
{
"name": "otel.exporter.otlp.logs.certificate",
"type": "java.lang.String",
"description": " The path to the file containing trusted certificates to use when verifying an OTLP log server's TLS credentials.<br/>The file should contain one or more X.509 certificates in PEM format.<br/>By default, the host platform's trusted root certificates are used."
},
{
"name": "otel.exporter.otlp.logs.client.certificate",
"type": "java.lang.String",
"description": "The path to the file containing trusted certificates to use when verifying an OTLP log server's TLS credentials.<br/>The file should contain one or more X.509 certificates in PEM format.<br/>By default, no chain file is used."
},
{
"name": "otel.exporter.otlp.logs.client.key",
"type": "java.lang.String",
"description": "The path to the file containing private client key to use when verifying an OTLP log client's TLS credentials.<br/>The file should contain one private key PKCS8 PEM format.<br/>By default, no client key file is used."
},
{
"name": "otel.exporter.otlp.logs.compression",
"type": "java.lang.String",
"description": "The compression type to use on OTLP log requests.<br/>Options include <code>gzip</code>.<br/>By default, no compression will be used."
},
{
"name": "otel.exporter.otlp.logs.endpoint",
"type": "java.lang.String",
"description": "The OTLP logs endpoint to connect to.<br/>Must be a URL with a scheme of either <code>http</code> or <code>https</code> based on the use of TLS.<br/>Default is <code>http://localhost:4317</code> when protocol is <code>grpc</code>, and <code>http://localhost:4318/v1/logs</code> when protocol is <code>http/protobuf</code>."
},
{
"name": "otel.exporter.otlp.logs.headers",
"type": "java.util.Map<java.lang.String, java.lang.String>",
"description": "Request headers for OTLP log requests.<br/>Can be either a Spring map or a key-value separated String, e.g. <code>key1=value1,key2=value2</code>."
},
{
"name": "otel.exporter.otlp.logs.protocol",
"type": "java.lang.String",
"description": "The transport protocol to use on OTLP log requests.",
"defaultValue": "http/protobuf"
},
{
"name": "otel.exporter.otlp.logs.timeout",
"type": "java.lang.String",
"description": "The maximum waiting time, in milliseconds, allowed to send each OTLP log batch.<br/>Durations can be of the form <code>{number}{unit}</code>, where unit is one of:<ul><li>ms<li>s<li>m<li>h<li>d</ul><p>If no unit is specified, milliseconds is the assumed duration unit.",
"defaultValue": "10000"
},
{
"name": "otel.exporter.otlp.metrics.certificate",
"type": "java.lang.String",
"description": "The path to the file containing trusted certificates to use when verifying an OTLP metric server's TLS credentials.<br/>The file should contain one or more X.509 certificates in PEM format.<br/>By default, the host platform's trusted root certificates are used."
},
{
"name": "otel.exporter.otlp.metrics.client.certificate",
"type": "java.lang.String",
"description": "The path to the file containing trusted certificates to use when verifying an OTLP metric server's TLS credentials.<br/>The file should contain one or more X.509 certificates in PEM format.<br/>By default, no chain file is used."
},
{
"name": "otel.exporter.otlp.metrics.client.key",
"type": "java.lang.String",
"description": "The path to the file containing private client key to use when verifying an OTLP metric client's TLS credentials.<br/>The file should contain one private key PKCS8 PEM format.<br/>By default, no client key file is used."
},
{
"name": "otel.exporter.otlp.metrics.compression",
"type": "java.lang.String",
"description": "The compression type to use on OTLP metric requests.<br/>Options include <code>gzip</code>.<br/>By default, no compression will be used."
},
{
"name": "otel.exporter.otlp.metrics.default.histogram.aggregation",
"type": "java.lang.String",
"description": "The preferred default histogram aggregation.",
"defaultValue": "EXPLICIT_BUCKET_HISTOGRAM"
},
{
"name": "otel.exporter.otlp.metrics.endpoint",
"type": "java.lang.String",
"description": "The OTLP metrics endpoint to connect to.<br/>Must be a URL with a scheme of either <code>http</code> or <code>https</code> based on the use of TLS.<br/>Default is <code>http://localhost:4317</code> when protocol is <code>grpc</code>, and <code>http://localhost:4318/v1/metrics</code> when protocol is <code>http/protobuf</code>."
},
{
"name": "otel.exporter.otlp.metrics.headers",
"type": "java.util.Map<java.lang.String, java.lang.String>",
"description": "Request headers for OTLP metric requests.<br/>Can be either a Spring map or a key-value separated String, e.g. <code>key1=value1,key2=value2</code>."
},
{
"name": "otel.exporter.otlp.metrics.protocol",
"type": "java.lang.String",
"description": "The transport protocol to use on OTLP metric requests.",
"defaultValue": "http/protobuf"
},
{
"name": "otel.exporter.otlp.metrics.temporality.preference",
"type": "java.lang.String",
"description": "The preferred output aggregation temporality.",
"defaultValue": "CUMULATIVE"
},
{
"name": "otel.exporter.otlp.metrics.timeout",
"type": "java.lang.String",
"description": "The maximum waiting time, in milliseconds, allowed to send each OTLP metric batch.<br/>Durations can be of the form <code>{number}{unit}</code>, where unit is one of:<ul><li>ms<li>s<li>m<li>h<li>d</ul><p>If no unit is specified, milliseconds is the assumed duration unit.",
"defaultValue": "10000"
},
{
"name": "otel.exporter.otlp.protocol",
"type": "java.lang.String",
"description": "The transport protocol to use on OTLP trace, metric, and log requests.",
"defaultValue": "http/protobuf"
},
{
"name": "otel.exporter.otlp.timeout",
"type": "java.lang.String",
"description": "The maximum waiting time, in milliseconds, allowed to send each OTLP trace, metric, and log batch.<br/>Durations can be of the form <code>{number}{unit}</code>, where unit is one of:<ul><li>ms<li>s<li>m<li>h<li>d</ul><p>If no unit is specified, milliseconds is the assumed duration unit.",
"defaultValue": "10000"
},
{
"name": "otel.exporter.otlp.traces.certificate",
"type": "java.lang.String",
"description": "The path to the file containing trusted certificates to use when verifying an OTLP trace server's TLS credentials.<br/>The file should contain one or more X.509 certificates in PEM format.<br/>By default, the host platform's trusted root certificates are used."
},
{
"name": "otel.exporter.otlp.traces.client.certificate",
"type": "java.lang.String",
"description": "The path to the file containing trusted certificates to use when verifying an OTLP trace server's TLS credentials.<br/>The file should contain one or more X.509 certificates in PEM format.<br/>By default no chain file is used."
},
{
"name": "otel.exporter.otlp.traces.client.key",
"type": "java.lang.String",
"description": "The path to the file containing private client key to use when verifying an OTLP trace client's TLS credentials.<br/>The file should contain one private key PKCS8 PEM format.<br/>By default, no client key file is used."
},
{
"name": "otel.exporter.otlp.traces.compression",
"type": "java.lang.String",
"description": "The compression type to use on OTLP trace requests.<br/>Options include <code>gzip</code>.<br/>By default, no compression will be used."
},
{
"name": "otel.exporter.otlp.traces.endpoint",
"type": "java.lang.String",
"description": "The OTLP traces endpoint to connect to.<br/>Must be a URL with a scheme of either <code>http</code> or <code>https</code> based on the use of TLS.<br/>Default is <code>http://localhost:4317</code> when protocol is <code>grpc</code>, and <code>http://localhost:4318/v1/traces</code> when protocol is <code>http/protobuf</code>."
},
{
"name": "otel.exporter.otlp.traces.headers",
"type": "java.util.Map<java.lang.String, java.lang.String>",
"description": "Request headers for OTLP trace requests.<br/>Can be either a Spring map or a key-value separated String, e.g. <code>key1=value1,key2=value2</code>."
},
{
"name": "otel.exporter.otlp.traces.protocol",
"type": "java.lang.String",
"description": "The transport protocol to use on OTLP trace requests.",
"defaultValue": "http/protobuf"
},
{
"name": "otel.exporter.otlp.traces.timeout",
"type": "java.lang.String",
"description": "The maximum waiting time, in milliseconds, allowed to send each OTLP trace batch.<br/>Durations can be of the form <code>{number}{unit}</code>, where unit is one of:<ul><li>ms<li>s<li>m<li>h<li>d</ul><p>If no unit is specified, milliseconds is the assumed duration unit.",
"defaultValue": "10000"
},
{
"name": "otel.exporter.zipkin.endpoint",
"type": "java.lang.String",
"description": "The Zipkin endpoint to connect to.<br/>Currently only HTTP is supported.",
"defaultValue": "http://localhost:9411/api/v2/spans"
},
{
"name": "otel.instrumentation.annotations.enabled",
"type": "java.lang.Boolean",
"description": "Enable the <code>@WithSpan</code> annotation.",
"defaultValue": true
},
{
"name": "otel.instrumentation.kafka.enabled",
"type": "java.lang.Boolean",
"description": "Enable the Kafka instrumentation.",
"defaultValue": true
},
{
"name": "otel.instrumentation.log4j-appender.enabled",
"type": "java.lang.Boolean",
"description": "Enable the Log4J2 appender instrumentation.",
"defaultValue": true
},
{
"name": "otel.instrumentation.logback-appender.enabled",
"type": "java.lang.Boolean",
"description": "Enable the Logback appender instrumentation.",
"defaultValue": true
},
{
"name": "otel.instrumentation.logback-appender.experimental.capture-code-attributes",
"type": "java.lang.Boolean",
"description": "Enable the capture of source code attributes. Note that capturing source code attributes at logging sites might add a performance overhead.",
"defaultValue": false
},
{
"name": "otel.instrumentation.logback-appender.experimental.capture-marker-attribute",
"type": "java.lang.Boolean",
"description": "Enable the capture of Logback markers as attributes.",
"defaultValue": false
},
{
"name": "otel.instrumentation.logback-appender.experimental.capture-key-value-pair-attributes",
"type": "java.lang.Boolean",
"description": "Enable the capture of Logback key value pairs as attributes.",
"defaultValue": false
},
{
"name": "otel.instrumentation.logback-appender.experimental-log-attributes",
"type": "java.lang.Boolean",
"description": "Enable the capture of experimental log attributes thread.name and thread.id.",
"defaultValue": false
},
{
"name": "otel.instrumentation.logback-appender.experimental.capture-logger-context-attributes",
"type": "java.lang.Boolean",
"description": "Enable the capture of Logback logger context properties as attributes.",
"defaultValue": false
},
{
"name": "otel.instrumentation.logback-appender.experimental.capture-mdc-attributes",
"type": "java.util.List<java.lang.String>",
"description": "MDC attributes to capture. Use the wildcard character <code>*</code> to capture all attributes."
},
{
"name": "otel.instrumentation.micrometer.enabled",
"type": "java.lang.Boolean",
"description": "Enable the Micrometer instrumentation.",
"defaultValue": false
},
{
"name": "otel.instrumentation.spring-web.enabled",
"type": "java.lang.Boolean",
"description": "Enable the RestTemplate instrumentation.",
"defaultValue": true
},
{
"name": "otel.instrumentation.spring-webflux.enabled",
"type": "java.lang.Boolean",
"description": "Enable the WebClient instrumentation.",
"defaultValue": true
},
{
"name": "otel.instrumentation.spring-webmvc.enabled",
"type": "java.lang.Boolean",
"description": "Enable the Servlet instrumentation.",
"defaultValue": true
},
{
"name": "otel.logs.exporter",
"type": "java.util.List<java.lang.String>",
"description": "List of exporters to be used for logs.",
"defaultValue": "otlp"
},
{
"name": "otel.metric.export.interval",
"type": "java.lang.String",
"description": "The interval, in milliseconds, between the start of two export attempts.<br/>Durations can be of the form <code>{number}{unit}</code>, where unit is one of:<ul><li>ms<li>s<li>m<li>h<li>d</ul><p>If no unit is specified, milliseconds is the assumed duration unit.",
"defaultValue": "60000"
},
{
"name": "otel.metrics.exporter",
"type": "java.util.List<java.lang.String>",
"description": "List of exporters to be used for metrics.",
"defaultValue": "otlp"
},
{
"name": "otel.propagators",
"type": "java.util.List<java.lang.String>",
"description": "List of propagators to be used for context propagation.",
"defaultValue": "tracecontext,baggage"
},
{
"name": "otel.resource.attributes",
"type": "java.util.Map<java.lang.String, java.lang.String>",
"description": "Resource attributes to be added to all spans. In addition to these attributes, the resource will also include attributes discovered from the runtime, such as <code>host.name</code> and <code>process.id</code>."
},
{
"name": "otel.sdk.disabled",
"type": "java.lang.Boolean",
"description": "Disable the OpenTelemetry Spring Starter.",
"defaultValue": false
},
{
"name": "otel.springboot.resource.enabled",
"type": "java.lang.Boolean",
"description": "Enable the resource auto-configuration.",
"defaultValue": true
},
{
"name": "otel.traces.exporter",
"type": "java.util.List<java.lang.String>",
"description": "List of exporters to be used for tracing.",
"defaultValue": "otlp"
},
{
"name": "otel.traces.sampler.probability",
"type": "java.lang.Double",
"description": "The probability of sampling.<br/>The value should be within [0.0, 1.0]. 1.0 means keep everything, 0.0 means drop all spans.",
"defaultValue": 1.0
}
],
"hints": [
{
"name": "otel.exporter.otlp.logs.protocol",
"values": [
{
"value": "http/protobuf"
},
{
"value": "grpc"
}
]
},
{
"name": "otel.exporter.otlp.metrics.protocol",
"values": [
{
"value": "http/protobuf"
},
{
"value": "grpc"
}
]
},
{
"name": "otel.exporter.otlp.protocol",
"values": [
{
"value": "http/protobuf"
},
{
"value": "grpc"
}
]
},
{
"name": "otel.exporter.otlp.traces.protocol",
"values": [
{
"value": "http/protobuf"
},
{
"value": "grpc"
}
]
},
{
"name": "otel.exporter.otlp.metrics.default.histogram.aggregation",
"values": [
{
"value": "BASE2_EXPONENTIAL_BUCKET_HISTOGRAM"
},
{
"value": "EXPLICIT_BUCKET_HISTOGRAM"
}
]
},
{
"name": "otel.exporter.otlp.metrics.temporality.preference",
"values": [
{
"value": "CUMULATIVE",
"description": "All instruments will have cumulative temporality."
},
{
"value": "DELTA",
"description": "Counter (sync and async) and histograms will be delta, up down counters (sync and async) will be cumulative."
},
{
"value": "LOWMEMORY",
"description": "Sync counter and histograms will be delta, async counter and up down counters (sync and async) will be cumulative."
}
]
},
{
"name": "otel.logs.exporter",
"values": [
{
"value": "logging",
"description": "The logging exporter prints exported logs to stdout. It's mainly used for testing and debugging."
},
{
"value": "none",
"description": "No autoconfigured exporter."
},
{
"value": "otlp",
"description": "OpenTelemetry Protocol (OTLP) exporter."
}
]
},
{
"name": "otel.metrics.exporter",
"values": [
{
"value": "logging",
"description": "The logging exporter prints exported metrics to stdout. It's mainly used for testing and debugging."
},
{
"value": "none",
"description": "No autoconfigured exporter."
},
{
"value": "otlp",
"description": "OpenTelemetry Protocol (OTLP) exporter."
}
]
},
{
"name": "otel.propagators",
"values": [
{
"value": "baggage",
"description": "The Baggage propagator propagates baggage using the W3C Baggage format. See https://www.w3.org/TR/baggage/."
},
{
"value": "b3",
"description": "The B3 propagator propagates trace context using the B3 single-header format: See https://github.com/openzipkin/b3-propagation#single-header."
},
{
"value": "b3multi",
"description": "The B3 propagator propagates trace context using the B3 multi-header format: See https://github.com/openzipkin/b3-propagation#multiple-headers."
},
{
"value": "jaeger",
"description": "The Jaeger propagator propagates trace context using the Jaeger format. See https://www.jaegertracing.io/docs/1.21/client-libraries/#propagation-format."
},
{
"value": "ottrace",
"description": "The OpenTelemetry Trace Context propagator propagates trace context using the OpenTelemetry format. See https://github.com/opentracing/specification/blob/master/rfc/trace_identifiers.md."
},
{
"value": "tracecontext",
"description": "The Trace Context propagator propagates trace context using the W3C Trace Context format (add `baggage` as well to include W3C baggage). See https://www.w3.org/TR/trace-context/."
},
{
"value": "xray",
"description": "The AWS X-Ray propagator propagates trace context using the AWS X-Ray format. See https://docs.aws.amazon.com/xray/latest/devguide/xray-concepts.html#xray-concepts-tracingheader."
}
]
},
{
"name": "otel.traces.exporter",
"values": [
{
"value": "logging",
"description": "The logging exporter prints the name of the span along with its attributes to stdout. It's mainly used for testing and debugging."
},
{
"value": "none",
"description": "No autoconfigured exporter."
},
{
"value": "otlp",
"description": "OpenTelemetry Protocol (OTLP) exporter."
},
{
"value": "zipkin",
"description": "Zipkin exporter."
}
]
}
]
}