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 30ee772 commit bd81d40Copy full SHA for bd81d40
src/exporter.ts
@@ -43,7 +43,10 @@ export class OTLPExporter implements SpanExporter {
43
}
44
45
send(items: any[], onSuccess: () => void, onError: (error: OTLPExporterError) => void): void {
46
- const exportMessage = createExportTraceServiceRequest(items)
+ const exportMessage = createExportTraceServiceRequest(items, {
47
+ useHex: true,
48
+ useLongBits: false,
49
+ })
50
const body = JSON.stringify(exportMessage)
51
const params: RequestInit = {
52
method: 'POST',
0 commit comments