|
344 | 344 | A scheme of https indicates a secure connection and takes precedence over this configuration setting.
|
345 | 345 | """
|
346 | 346 |
|
| 347 | +OTEL_EXPORTER_OTLP_LOGS_ENDPOINT = "OTEL_EXPORTER_OTLP_LOGS_ENDPOINT" |
| 348 | +""" |
| 349 | +.. envvar:: OTEL_EXPORTER_OTLP_LOGS_ENDPOINT |
| 350 | +
|
| 351 | +The :envvar:`OTEL_EXPORTER_OTLP_LOGS_ENDPOINT` target to which the log exporter is going to send logs. |
| 352 | +The endpoint MUST be a valid URL host, and MAY contain a scheme (http or https), port and path. |
| 353 | +A scheme of https indicates a secure connection and takes precedence over this configuration setting. |
| 354 | +""" |
| 355 | + |
347 | 356 | OTEL_EXPORTER_OTLP_TRACES_CERTIFICATE = "OTEL_EXPORTER_OTLP_TRACES_CERTIFICATE"
|
348 | 357 | """
|
349 | 358 | .. envvar:: OTEL_EXPORTER_OTLP_TRACES_CERTIFICATE
|
|
378 | 387 | associated with gRPC or HTTP requests.
|
379 | 388 | """
|
380 | 389 |
|
| 390 | +OTEL_EXPORTER_OTLP_LOGS_HEADERS = "OTEL_EXPORTER_OTLP_LOGS_HEADERS" |
| 391 | +""" |
| 392 | +.. envvar:: OTEL_EXPORTER_OTLP_LOGS_HEADERS |
| 393 | +
|
| 394 | +The :envvar:`OTEL_EXPORTER_OTLP_LOGS_HEADERS` contains the key-value pairs to be used as headers for logs |
| 395 | +associated with gRPC or HTTP requests. |
| 396 | +""" |
| 397 | + |
381 | 398 | OTEL_EXPORTER_OTLP_TRACES_COMPRESSION = "OTEL_EXPORTER_OTLP_TRACES_COMPRESSION"
|
382 | 399 | """
|
383 | 400 | .. envvar:: OTEL_EXPORTER_OTLP_TRACES_COMPRESSION
|
|
396 | 413 | exporter. If both are present, this takes higher precedence.
|
397 | 414 | """
|
398 | 415 |
|
| 416 | +OTEL_EXPORTER_OTLP_LOGS_COMPRESSION = ( |
| 417 | + "OTEL_EXPORTER_OTLP_LOGS_COMPRESSION" |
| 418 | +) |
| 419 | +""" |
| 420 | +.. envvar:: OTEL_EXPORTER_OTLP_LOGS_COMPRESSION |
| 421 | +
|
| 422 | +Same as :envvar:`OTEL_EXPORTER_OTLP_COMPRESSION` but only for the log |
| 423 | +exporter. If both are present, this takes higher precedence. |
| 424 | +""" |
| 425 | + |
399 | 426 | OTEL_EXPORTER_OTLP_TRACES_TIMEOUT = "OTEL_EXPORTER_OTLP_TRACES_TIMEOUT"
|
400 | 427 | """
|
401 | 428 | .. envvar:: OTEL_EXPORTER_OTLP_TRACES_TIMEOUT
|
|
421 | 448 | Default: False
|
422 | 449 | """
|
423 | 450 |
|
| 451 | +OTEL_EXPORTER_OTLP_LOGS_INSECURE = "OTEL_EXPORTER_OTLP_LOGS_INSECURE" |
| 452 | +""" |
| 453 | +.. envvar:: OTEL_EXPORTER_OTLP_LOGS_INSECURE |
| 454 | +
|
| 455 | +The :envvar:`OTEL_EXPORTER_OTLP_LOGS_INSECURE` represents whether to enable client transport security |
| 456 | +for gRPC requests for metrics. A scheme of https takes precedence over the this configuration setting. |
| 457 | +Default: False |
| 458 | +""" |
| 459 | + |
424 | 460 | OTEL_EXPORTER_OTLP_METRICS_ENDPOINT = "OTEL_EXPORTER_OTLP_METRICS_ENDPOINT"
|
425 | 461 | """
|
426 | 462 | .. envvar:: OTEL_EXPORTER_OTLP_METRICS_ENDPOINT
|
|
440 | 476 | TLS credentials of gRPC client for traces. Should only be used for a secure connection for tracing.
|
441 | 477 | """
|
442 | 478 |
|
| 479 | +OTEL_EXPORTER_OTLP_LOGS_CERTIFICATE = ( |
| 480 | + "OTEL_EXPORTER_OTLP_LOGS_CERTIFICATE" |
| 481 | +) |
| 482 | +""" |
| 483 | +.. envvar:: OTEL_EXPORTER_OTLP_LOGS_CERTIFICATE |
| 484 | +
|
| 485 | +The :envvar:`OTEL_EXPORTER_OTLP_LOGS_CERTIFICATE` stores the path to the certificate file for |
| 486 | +TLS credentials of gRPC client for traces. Should only be used for a secure connection for tracing. |
| 487 | +""" |
| 488 | + |
443 | 489 | OTEL_EXPORTER_OTLP_METRICS_HEADERS = "OTEL_EXPORTER_OTLP_METRICS_HEADERS"
|
444 | 490 | """
|
445 | 491 | .. envvar:: OTEL_EXPORTER_OTLP_METRICS_HEADERS
|
|
456 | 502 | wait for each batch export for metrics.
|
457 | 503 | """
|
458 | 504 |
|
| 505 | +OTEL_EXPORTER_OTLP_LOGS_TIMEOUT = "OTEL_EXPORTER_OTLP_LOGS_TIMEOUT" |
| 506 | +""" |
| 507 | +.. envvar:: OTEL_EXPORTER_OTLP_LOGS_TIMEOUT |
| 508 | +
|
| 509 | +The :envvar:`OTEL_EXPORTER_OTLP_LOGS_TIMEOUT` is the maximum time the OTLP exporter will |
| 510 | +wait for each batch export for logs. |
| 511 | +""" |
| 512 | + |
459 | 513 | OTEL_EXPORTER_OTLP_METRICS_COMPRESSION = (
|
460 | 514 | "OTEL_EXPORTER_OTLP_METRICS_COMPRESSION"
|
461 | 515 | )
|
|
0 commit comments