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