15 lines
545 B
TypeScript
15 lines
545 B
TypeScript
![]() |
import { NodeSDK } from "@opentelemetry/sdk-node";
|
||
|
import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-http";
|
||
|
import { Resource } from "@opentelemetry/resources";
|
||
|
import { SemanticResourceAttributes } from "@opentelemetry/semantic-conventions";
|
||
|
import { SimpleSpanProcessor } from "@opentelemetry/sdk-trace-node";
|
||
|
|
||
|
const sdk = new NodeSDK({
|
||
|
resource: new Resource({
|
||
|
[SemanticResourceAttributes.SERVICE_NAME]: "saleor.app.search",
|
||
|
}),
|
||
|
spanProcessor: new SimpleSpanProcessor(new OTLPTraceExporter()),
|
||
|
});
|
||
|
|
||
|
sdk.start();
|