TelemetryConfiguration.TelemetryModules Property

Definition

Gets the list of modules that automatically generate application telemetry.

public:
 property System::Collections::Generic::IList<System::Object ^> ^ TelemetryModules { System::Collections::Generic::IList<System::Object ^> ^ get(); };
public System.Collections.Generic.IList<object> TelemetryModules { get; }
member this.TelemetryModules : System.Collections.Generic.IList<obj>
Public ReadOnly Property TelemetryModules As IList(Of Object)

Property Value

Remarks

Telemetry modules automatically send telemetry describing the application to Application Insights. For example, a telemetry module can handle application exception events and automatically send ExceptionTelemetry you can see on the Application Insights portal. The default list of telemetry modules is provided by the Application Insights NuGet packages and loaded from the ApplicationInsights.config file located in the application directory.

Applies to