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 19893c6 commit ced3749Copy full SHA for ced3749
src/telemetry/index.ts
@@ -28,13 +28,9 @@ import type { ConfigurationSchema } from '../config/schema.js';
28
import { getAutoInstrumentations } from './instrumentations.js';
29
import { DummySpanExporter } from './DummyExporter.js';
30
31
-/**
32
- * NOSONAR_BEGIN (typescript:S5332) - OTLP exporter requires http it seems.
33
- */
+// OTLP seems to only support http, and this is a default on the local network so I'm keeping it.
+// NOSONAR
34
const baseDefaultOtlpUrl = new URL('http://otlp-exporter:4318/v1').toString();
35
36
- * NOSONAR_END (typescript:S5332)
37
38
39
function getSpanExporter() {
40
if (
0 commit comments