bcquality/community/knowledge/telemetry/default-telemetryscope-to-extensionpublisher.bad.al
Jeremy Vyska f5156c61de Add 15 community knowledge articles from BC Code Intel ingest
Ingests net-new /community knowledge from BC Code Intelligence, surviving
the admission test, gray-zone salvage, and dedup against the full corpus.

Domains: ui (6), error-handling (3), performance (2), upgrade (1),
appsource (1), security (1), telemetry (1). The two BC24 No. Series
migration drafts are merged into one article.

Adds good/bad AL samples for the clean-fit articles (error-handling,
performance, security, telemetry). UI and appsource remain knowledge-only.

Validator and knowledge-index checks pass (207 articles).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-01 11:02:48 +02:00

17 lines
713 B
AL

codeunit 50136 "Telemetry Bad Sample"
{
procedure LogSyncDiagnostic(RecordsProcessed: Integer)
var
Dimensions: Dictionary of [Text, Text];
begin
Dimensions.Add('recordsProcessed', Format(RecordsProcessed));
// TelemetryScope::All pushes this internal diagnostic into every
// customer's Application Insights too, inflating their ingestion cost
// and burying their own signals in noise. ExtensionPublisher is the
// correct scope for publisher-only diagnostics.
Session.LogMessage(
'SYNC001', 'Nightly sync completed.', Verbosity::Normal,
DataClassification::SystemMetadata, TelemetryScope::All, Dimensions);
end;
}