bcquality/microsoft/knowledge/telemetry/register-one-telemetry-logger-per-publisher.md
Jesper Schulz-Wedde e81632b4be Complete AL review knowledge readiness
Fill telemetry and Query coverage, strengthen thin review domains, correct audited content defects, and add deterministic cheap-model evaluation and reference-integrity safeguards.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: 9825b012-e653-496a-9310-c1f4b6f8ac27
2026-07-15 07:19:15 +02:00

1.5 KiB

bc-version domain keywords technologies countries application-area
18..
telemetry
telemetry-logger
interface
register
publisher
featuretelemetry
onregistertelemetrylogger
al
w1
all

Register exactly one Telemetry Logger implementation per publisher

Description

The Telemetry and Feature Telemetry codeunits reach an extension publisher's telemetry through an implementation of the "Telemetry Logger" interface registered with "Telemetry Loggers".OnRegisterTelemetryLogger. The platform requires exactly one registration per app publisher. No registration prevents the module from working as expected; multiple registrations make the destination ambiguous and produce platform error telemetry.

Best Practice

Place one internal logger implementation in one app for the publisher, forward its LogMessage method to Session.LogMessage, and register it from one event subscriber. Companion apps with the same publisher reuse that registration instead of each adding another. Evaluate absence only with repository or app-family context; a single-file diff cannot prove that no logger exists elsewhere.

See sample: register-one-telemetry-logger-per-publisher.good.al.

Anti Pattern

Adding FeatureTelemetry calls to a complete app with no logger registration, or registering two logger implementations for apps that share the same publisher. The calls compile, but the telemetry module reports the missing or duplicate registration instead of behaving as intended.

See sample: register-one-telemetry-logger-per-publisher.bad.al.