(value: string | undefined)
| 60 | }; |
| 61 | |
| 62 | const isTruthy = (value: string | undefined): boolean => |
| 63 | value === "1" || value === "true" || value === "yes"; |
| 64 | |
| 65 | // OTEL_EXPORTER_OTLP_HEADERS carries auth for a hosted collector, in the spec's |
| 66 | // "k=v,k2=v2" form. A malformed pair is skipped rather than failing the boot: |