ProjectsAgentsModelFactory.TelemetryEndpoint Method

Definition

A telemetry export endpoint configuration. Please note this is the abstract base class. The derived classes available for instantiation are: OtlpTelemetryEndpoint.

public static Azure.AI.Projects.Agents.TelemetryEndpoint TelemetryEndpoint(string kind = default, System.Collections.Generic.IEnumerable<Azure.AI.Projects.Agents.TelemetryDataKind> data = default, Azure.AI.Projects.Agents.TelemetryEndpointAuth auth = default);
static member TelemetryEndpoint : string * seq<Azure.AI.Projects.Agents.TelemetryDataKind> * Azure.AI.Projects.Agents.TelemetryEndpointAuth -> Azure.AI.Projects.Agents.TelemetryEndpoint
Public Shared Function TelemetryEndpoint (Optional kind As String = Nothing, Optional data As IEnumerable(Of TelemetryDataKind) = Nothing, Optional auth As TelemetryEndpointAuth = Nothing) As TelemetryEndpoint

Parameters

kind
String

The telemetry export endpoint kind.

data
IEnumerable<TelemetryDataKind>

Data types to export to this endpoint. Use an empty array to export no data.

auth
TelemetryEndpointAuth

Optional authentication configuration.

Returns

A new TelemetryEndpoint instance for mocking.

Applies to