1.7.50 • Published 7 days ago

@kimitsu/otel-sdk-web v1.7.50

Weekly downloads
-
License
MIT
Repository
github
Last release
7 days ago

OpenTelemetry SDK for Browser JS

CI npm version License: MIT

NOTE: This package depends on experimental packages. There's no guarantee to work correctly.

This package provides OpenTelemetry SDK for Browser JS including tracing, metrics and logs.

Quick Start

Installation

npm

npm install @kimitsu/otel-sdk-web

yarn

yarn add @kimitsu/otel-sdk-web

pnpm

pnpm install @kimitsu/otel-sdk-web

Instrumentation

Create Tracer, Meter and Logger

const { tracer, meter, logger } = start({
  serviceName: "client",
  tracerName: "app",
  meterName: "app",
  loggerName: "app",
});

Emit Spans

const span = tracer.startSpan("client manual span");
span.end();

Emit Instruments

const counter = meter.createCounter("client_counter");
counter.add(1);

Emit LogRecords

logger.info("client log");

Configuration

Common Attributes

Option NameRequiredDescriptionTypeDefault Value
serviceNameYour service name.string
otelcolOriginThe origin of OpenTelemetry Collector.string"http://localhost:4318"
debugThe flag to enable debug output to console.log.booleanfalse

Traces Attributes

Option NameRequiredDescriptionTypeDefault Value
tracerNameThe Tracer name.string
otelcolTracesPathThe path of the traces endpoint of OpenTelemetry Collector.string"/v1/traces"

Metrics Attributes

Option NameRequiredDescriptionTypeDefault Value
meterNameThe Meter name.string
otelcolMetricsPathThe path of the metrics endpoint of OpenTelemetry Collector.string"/v1/metrics"
metricsExportIntervalMillisThe interval in milliseconds for exporting metrics.number60_000

Logs Attributes

Option NameRequiredDescriptionTypeDefault Value
loggerNameThe Logger name.string
otelcolLogsPathThe path of the logs endpoint of OpenTelemetry Collector.string"/v1/logs"
logLevelThe log level.SeverityNumberSeverityNumber.INFO

Examples

Next.js

See under /examples/nextjs.

1.7.50

7 days ago

1.7.49

7 days ago

1.7.47

11 days ago

1.7.48

10 days ago

1.7.46

11 days ago

1.7.44

13 days ago

1.7.45

13 days ago

1.7.43

16 days ago

1.7.42

17 days ago

1.7.41

17 days ago

1.7.39

18 days ago

1.7.40

18 days ago

1.7.37

19 days ago

1.7.38

19 days ago

1.7.36

20 days ago

1.7.35

25 days ago

1.7.34

25 days ago

1.7.33

28 days ago

1.7.31

1 month ago

1.7.32

30 days ago

1.7.30

1 month ago

1.7.29

1 month ago

1.7.28

1 month ago

1.7.26

1 month ago

1.7.27

1 month ago

1.7.25

1 month ago

1.7.24

1 month ago

1.7.23

1 month ago

1.7.20

1 month ago

1.7.21

1 month ago

1.7.22

1 month ago

1.7.19

1 month ago

1.7.18

1 month ago

1.7.17

2 months ago

1.7.16

2 months ago

1.7.15

2 months ago

1.7.13

2 months ago

1.7.14

2 months ago

1.7.12

2 months ago

1.7.11

2 months ago

1.7.10

2 months ago

1.7.9

2 months ago

1.7.8

2 months ago

1.7.7

2 months ago

1.7.6

2 months ago

1.7.5

2 months ago

1.7.3

2 months ago

1.7.4

2 months ago

1.7.2

2 months ago

1.7.1

3 months ago

1.7.0

3 months ago

1.6.1

3 months ago

1.6.0

3 months ago

1.5.0

3 months ago

1.4.0

3 months ago

1.3.1

3 months ago

1.3.0

3 months ago

1.2.0

3 months ago

1.1.1

3 months ago

1.1.0

3 months ago

1.0.1

3 months ago

1.0.0

3 months ago