We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d223e2 commit 17128d9Copy full SHA for 17128d9
src/telemetry/index.ts
@@ -28,7 +28,10 @@ import type { ConfigurationSchema } from '../config/schema.js';
28
import { getAutoInstrumentations } from './instrumentations.js';
29
import { DummySpanExporter } from './DummyExporter.js';
30
31
-const baseDefaultOtlpUrl = new URL('https://otlp-exporter:4318/v1').toString();
+/**
32
+ * @SuppressWarning(typescript:S5332) - OTLP exporter requires http it seems.
33
+ */
34
+const baseDefaultOtlpUrl = new URL('http://otlp-exporter:4318/v1').toString();
35
36
function getSpanExporter() {
37
if (
0 commit comments