Enum 8704 AL Telemetry Scope in 26

App
System Application
Namespace
System.Telemetry

Values, 3

Versions171819202122232425262728latest

Source2526272829

Source in 26

src/System Application/App/Telemetry/src/Logging/ALTelemetryScope.Enum.al37 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Telemetry;

/// <summary>
/// Represents the emission scope of the telemetry signal.
/// An wrapper in AL to provide the capability to send Telemetries to ISVs.
/// </summary>
enum 8704 "AL Telemetry Scope"
{
    Access = Internal;

    value(0; ExtensionPublisher)
    {
        /// <summary>
        /// Emit telemetry to only extensions publisher. Corresponds to TelemetryScope::ExtensionPublisher.
        /// </summary>
        Caption = 'Extension Publisher';
    }
    value(1; Environment)
    {
        /// <summary>
        /// Emit telemetry to extensions publisher and environment. Corresponds to TelemetryScope::All.
        /// </summary>
        Caption = 'Environment';
    }
    value(2; All)
    {
        /// <summary>
        /// Emit telemetry to extensions publisher, environment and ISVs on the callstack.
        /// </summary>
        Caption = 'All';
    }
}

Values, 3

IdNameObsolete
0ExtensionPublisher-
1Environment-
2All-