DacServices.EnableTelemetry 方法

定义

重载

EnableTelemetry(String, Version)

全局启用遥测,并设置要包含在遥测事件中的应用程序和版本名称

EnableTelemetry(String, Version, Action<DacFxTelemetryEventData>)

全局启用遥测,并设置要包含在遥测事件中的应用程序和版本名称

EnableTelemetry(String, Version, Action<DacFxTelemetryEventData>, Func<String>)

全局启用遥测,并设置要包含在遥测事件中的应用程序和版本名称

EnableTelemetry(String, Version)

全局启用遥测,并设置要包含在遥测事件中的应用程序和版本名称

public static void EnableTelemetry (string applicationName = default, Version applicationVersion = default);
static member EnableTelemetry : string * Version -> unit
Public Shared Sub EnableTelemetry (Optional applicationName As String = Nothing, Optional applicationVersion As Version = Nothing)

参数

applicationName
String

应用程序名称

applicationVersion
Version

应用程序版本

适用于

EnableTelemetry(String, Version, Action<DacFxTelemetryEventData>)

全局启用遥测,并设置要包含在遥测事件中的应用程序和版本名称

public static void EnableTelemetry (string applicationName, Version applicationVersion, Action<Microsoft.Data.Tools.Schema.Common.Telemetry.DacFxTelemetryEventData> telemetryItemCallback);
static member EnableTelemetry : string * Version * Action<Microsoft.Data.Tools.Schema.Common.Telemetry.DacFxTelemetryEventData> -> unit
Public Shared Sub EnableTelemetry (applicationName As String, applicationVersion As Version, telemetryItemCallback As Action(Of DacFxTelemetryEventData))

参数

applicationName
String

应用程序名称

applicationVersion
Version

应用程序版本

telemetryItemCallback
Action<DacFxTelemetryEventData>

允许检查遥测数据的回调方法

适用于

EnableTelemetry(String, Version, Action<DacFxTelemetryEventData>, Func<String>)

全局启用遥测,并设置要包含在遥测事件中的应用程序和版本名称

public static void EnableTelemetry (string applicationName, Version applicationVersion, Action<Microsoft.Data.Tools.Schema.Common.Telemetry.DacFxTelemetryEventData> telemetryItemCallback, Func<string> getApplicationProperty);
static member EnableTelemetry : string * Version * Action<Microsoft.Data.Tools.Schema.Common.Telemetry.DacFxTelemetryEventData> * Func<string> -> unit
Public Shared Sub EnableTelemetry (applicationName As String, applicationVersion As Version, telemetryItemCallback As Action(Of DacFxTelemetryEventData), getApplicationProperty As Func(Of String))

参数

applicationName
String

应用程序名称

applicationVersion
Version

应用程序版本

telemetryItemCallback
Action<DacFxTelemetryEventData>

允许检查遥测数据的回调方法

getApplicationProperty
Func<String>

用于获取特定于应用程序的属性值的函数

适用于