packages feed

eventlog-live-0.9.0.0: data/help.footer.txt

OpenTelemetry options:

  OTEL_LOG_LEVEL                  Log level used by Eventlog Live's internal logger. Defaults to "info".
  OTEL_SERVICE_NAME               Sets the value of the service.name resource attribute.

                                  If service.name is also provided in OTEL_RESOURCE_ATTRIBUTES, then OTEL_SERVICE_NAME takes precedence.
  OTEL_RESOURCE_ATTRIBUTES        Key-value pairs to be used as resource attributes.

  https://opentelemetry.io/docs/specs/otel/configuration/sdk-environment-variables/#general-sdk-configuration

OpenTelemetry Exporter selection:

  OTEL_LOGS_EXPORTER              Logs exporter to be used.
  OTEL_METRICS_EXPORTER           Metrics exporter to be used.
  OTEL_PROFILES_EXPORTER          Profiles exporter to be used.
  OTEL_TRACES_EXPORTER            Trace exporter to be used.

  Each option supports the values "console", "none" and "otlp" and defaults to "otlp".

  https://opentelemetry.io/docs/specs/otel/configuration/sdk-environment-variables/#exporter-selection

OpenTelemetry OTLP Exporter options:

  OTEL_EXPORTER_OTLP_PROTOCOL     The OTLP transport protocol. Defaults to "http/protobuf". Supported values are "http/protobuf" for protobuf-encoded data over HTTP connection and "grpc" for protobuf-encoded data using gRPC wire format over HTTP/2 connection.
  OTEL_EXPORTER_OTLP_ENDPOINT     Target to which the exporter is going to send telemetry data. A scheme of "https" indicates a secure connection and takes precendence over the insecure option. Defaults to "http://localhost:4318" if the OTLP transport protocol is "http/protobuf" and to "http://localhost:4317" if the OTLP transport protocol is "grpc".
  OTEL_EXPORTER_OTLP_INSECURE     Whether to enable client transport security for the exporter's gRPC connection. Defaults to "false".
  OTEL_EXPORTER_OTLP_CERTIFICATE  The trusted certificate to use when verifying a server's TLS credentials. Should only be used for a secure connection.
  OTEL_EXPORTER_OTLP_HEADERS      Key-value pairs to be used as headers associated with HTTP requests.
                                  N.B. This setting is only respected if the OTLP transport protocol is "http/protobuf".
  OTEL_EXPORTER_OTLP_COMPRESSION  The compression algorithm to be used by gRPC and HTTP requests. Supported values are "none" and "gzip". Defaults to "none".
  OTEL_EXPORTER_OTLP_TIMEOUT      The maximum time the OTLP exporter will wait for each batch export. Specified in milliseconds. A value of "0" means no timeout. Defaults to 10 seconds.

  Each option also supports signal-specific variants that only apply to the exporter for that specific signal. For instance, the signal-specific variants for OTEL_EXPORTER_OTLP_ENDPOINT are OTEL_EXPORTER_OTLP_LOGS_ENDPOINT, OTEL_EXPORTER_OTLP_METRICS_ENDPOINT, OTEL_EXPORTER_OTLP_PROFILES_ENDPOINT, and OTEL_EXPORTER_OTLP_TRACES_ENDPOINT.

  https://opentelemetry.io/docs/specs/otel/protocol/exporter/