Skip to main content

Interface: TelemetryOptions

worker.TelemetryOptions

Properties

logging

Optional logging: { filter?: string | undefined; } & Partial<Logger>

Control where to send Rust Core logs


metrics

Optional metrics: MetricsExporter

Control exporting NativeConnection and Worker metrics.

Turned off by default


noTemporalPrefixForMetrics

Optional noTemporalPrefixForMetrics: boolean

If set true, do not prefix metrics with temporal_. Will be removed eventually as the prefix is consistent with other SDKs.

Default

false


tracing

Optional tracing: unknown

Deprecated

Core SDK tracing is no longer supported. This option is ignored.


tracingFilter

Optional tracingFilter: string

A string in the env filter format specified here: https://docs.rs/tracing-subscriber/0.2.20/tracing_subscriber/struct.EnvFilter.html

Which determines what tracing data is collected in the Core SDK.

Deprecated

Use logging.filter instead