mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* Add security warnings to xml comments for core components * Address build errors. * Fix formatting issue * Fix formatting issue * Supress formatting warning * Supress format issue in ChatHistoryMemoryProvider * Fix remarks paragraphs
208 lines
11 KiB
C#
208 lines
11 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.AI;
|
|
|
|
namespace Microsoft.Agents.AI;
|
|
|
|
/// <summary>
|
|
/// Provides a delegating <see cref="AIAgent"/> implementation that implements the OpenTelemetry Semantic Conventions for Generative AI systems.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This class provides an implementation of the Semantic Conventions for Generative AI systems v1.37, defined at <see href="https://opentelemetry.io/docs/specs/semconv/gen-ai/" />.
|
|
/// The specification is still experimental and subject to change; as such, the telemetry output by this client is also subject to change.
|
|
/// </remarks>
|
|
public sealed class OpenTelemetryAgent : DelegatingAIAgent, IDisposable
|
|
{
|
|
// IMPLEMENTATION NOTE: The OpenTelemetryChatClient from Microsoft.Extensions.AI provides a full and up-to-date
|
|
// implementationof the OpenTelemetry Semantic Conventions for Generative AI systems, specifically for the client
|
|
// metrics and the chat span. But the chat span is almost identical to the invoke_agent span, just with invoke_agent
|
|
// have a different value for the operation name and a few additional tags. To avoid needing to reimplement the
|
|
// convention, then, and keep it up-to-date as the convention evolves, for now this implementation just delegates
|
|
// to OpenTelemetryChatClient for the actual telemetry work. For RunAsync and RunStreamingAsync, it delegates to the
|
|
// inner agent not directly but rather via OpenTelemetryChatClient, which wraps a ForwardingChatClient that in turn
|
|
// calls back into the inner agent.
|
|
|
|
/// <summary>The <see cref="OpenTelemetryChatClient"/> providing the bulk of the telemetry.</summary>
|
|
private readonly OpenTelemetryChatClient _otelClient;
|
|
/// <summary>The provider name extracted from <see cref="AIAgentMetadata"/>.</summary>
|
|
private readonly string? _providerName;
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="OpenTelemetryAgent"/> class.</summary>
|
|
/// <param name="innerAgent">The underlying <see cref="AIAgent"/> to be augmented with telemetry capabilities.</param>
|
|
/// <param name="sourceName">
|
|
/// An optional source name that will be used to identify telemetry data from this agent.
|
|
/// If not provided, a default source name will be used for telemetry identification.
|
|
/// </param>
|
|
/// <exception cref="ArgumentNullException"><paramref name="innerAgent"/> is <see langword="null"/>.</exception>
|
|
/// <remarks>
|
|
/// The constructor automatically extracts provider metadata from the inner agent and configures
|
|
/// telemetry collection according to OpenTelemetry semantic conventions for AI systems.
|
|
/// </remarks>
|
|
public OpenTelemetryAgent(AIAgent innerAgent, string? sourceName = null) : base(innerAgent)
|
|
{
|
|
this._providerName = innerAgent.GetService<AIAgentMetadata>()?.ProviderName;
|
|
|
|
this._otelClient = new OpenTelemetryChatClient(
|
|
new ForwardingChatClient(this),
|
|
sourceName: string.IsNullOrEmpty(sourceName) ? OpenTelemetryConsts.DefaultSourceName : sourceName!);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void Dispose() => this._otelClient.Dispose();
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether potentially sensitive information should be included in telemetry.
|
|
/// </summary>
|
|
/// <value>
|
|
/// <see langword="true"/> if potentially sensitive information should be included in telemetry;
|
|
/// <see langword="false"/> if telemetry shouldn't include raw inputs and outputs.
|
|
/// The default value is <see langword="false"/>, unless the <c>OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT</c>
|
|
/// environment variable is set to "true" (case-insensitive).
|
|
/// </value>
|
|
/// <remarks>
|
|
/// By default, telemetry includes metadata, such as token counts, but not raw inputs
|
|
/// and outputs, such as message content, function call arguments, and function call results.
|
|
/// The default value can be overridden by setting the <c>OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT</c>
|
|
/// environment variable to "true". Explicitly setting this property will override the environment variable.
|
|
/// <para>
|
|
/// <strong>Security consideration:</strong> When sensitive data capture is enabled, the full text of chat messages —
|
|
/// including user inputs, LLM responses, function call arguments, and function results — is emitted as telemetry.
|
|
/// This data may contain PII or other sensitive information. Ensure that your telemetry pipeline is configured
|
|
/// with appropriate access controls and data retention policies.
|
|
/// </para>
|
|
/// </remarks>
|
|
public bool EnableSensitiveData
|
|
{
|
|
get => this._otelClient.EnableSensitiveData;
|
|
set => this._otelClient.EnableSensitiveData = value;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
protected override async Task<AgentResponse> RunCoreAsync(
|
|
IEnumerable<ChatMessage> messages, AgentSession? session = null, AgentRunOptions? options = null, CancellationToken cancellationToken = default)
|
|
{
|
|
ChatOptions co = new ForwardedOptions(options, session, Activity.Current);
|
|
|
|
var response = await this._otelClient.GetResponseAsync(messages, co, cancellationToken).ConfigureAwait(false);
|
|
|
|
return response.RawRepresentation as AgentResponse ?? new AgentResponse(response);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
protected override async IAsyncEnumerable<AgentResponseUpdate> RunCoreStreamingAsync(
|
|
IEnumerable<ChatMessage> messages, AgentSession? session = null, AgentRunOptions? options = null, [EnumeratorCancellation] CancellationToken cancellationToken = default)
|
|
{
|
|
ChatOptions co = new ForwardedOptions(options, session, Activity.Current);
|
|
|
|
await foreach (var update in this._otelClient.GetStreamingResponseAsync(messages, co, cancellationToken).ConfigureAwait(false))
|
|
{
|
|
yield return update.RawRepresentation as AgentResponseUpdate ?? new AgentResponseUpdate(update);
|
|
}
|
|
}
|
|
|
|
/// <summary>Augments the current activity created by the <see cref="OpenTelemetryChatClient"/> with agent-specific information.</summary>
|
|
/// <param name="previousActivity">The <see cref="Activity"/> that was current prior to the <see cref="OpenTelemetryChatClient"/>'s invocation.</param>
|
|
private void UpdateCurrentActivity(Activity? previousActivity)
|
|
{
|
|
// If there isn't a current activity to augment, or it's the same one that was current when the agent was invoked (meaning
|
|
// the OpenTelemetryChatClient didn't create one), then there's nothing to do.
|
|
if (Activity.Current is not { } activity ||
|
|
ReferenceEquals(activity, previousActivity))
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Override information set by OpenTelemetryChatClient to make it specific to invoke_agent.
|
|
|
|
activity.DisplayName = string.IsNullOrWhiteSpace(this.Name)
|
|
? $"{OpenTelemetryConsts.GenAI.InvokeAgent} {this.Id}"
|
|
: $"{OpenTelemetryConsts.GenAI.InvokeAgent} {this.Name}({this.Id})";
|
|
activity.SetTag(OpenTelemetryConsts.GenAI.Operation.Name, OpenTelemetryConsts.GenAI.InvokeAgent);
|
|
|
|
if (!string.IsNullOrWhiteSpace(this._providerName))
|
|
{
|
|
_ = activity.SetTag(OpenTelemetryConsts.GenAI.Provider.Name, this._providerName);
|
|
}
|
|
|
|
// Further augment the activity with agent-specific tags.
|
|
|
|
_ = activity.SetTag(OpenTelemetryConsts.GenAI.Agent.Id, this.Id);
|
|
|
|
if (this.Name is { } name && !string.IsNullOrWhiteSpace(name))
|
|
{
|
|
_ = activity.SetTag(OpenTelemetryConsts.GenAI.Agent.Name, this.Name);
|
|
}
|
|
|
|
if (this.Description is { } description && !string.IsNullOrWhiteSpace(description))
|
|
{
|
|
_ = activity.SetTag(OpenTelemetryConsts.GenAI.Agent.Description, description);
|
|
}
|
|
}
|
|
|
|
/// <summary>State passed from this instance into the inner agent, circumventing the intermediate <see cref="OpenTelemetryChatClient"/>.</summary>
|
|
private sealed class ForwardedOptions : ChatOptions
|
|
{
|
|
public ForwardedOptions(AgentRunOptions? options, AgentSession? session, Activity? currentActivity) :
|
|
base((options as ChatClientAgentRunOptions)?.ChatOptions)
|
|
{
|
|
this.Options = options;
|
|
this.Session = session;
|
|
this.CurrentActivity = currentActivity;
|
|
}
|
|
|
|
public AgentRunOptions? Options { get; }
|
|
|
|
public AgentSession? Session { get; }
|
|
|
|
public Activity? CurrentActivity { get; }
|
|
}
|
|
|
|
/// <summary>The stub <see cref="IChatClient"/> used to delegate from the <see cref="OpenTelemetryChatClient"/> into the inner <see cref="AIAgent"/>.</summary>
|
|
/// <param name="parentAgent"></param>
|
|
private sealed class ForwardingChatClient(OpenTelemetryAgent parentAgent) : IChatClient
|
|
{
|
|
public async Task<ChatResponse> GetResponseAsync(
|
|
IEnumerable<ChatMessage> messages, ChatOptions? options = null, CancellationToken cancellationToken = default)
|
|
{
|
|
ForwardedOptions? fo = options as ForwardedOptions;
|
|
|
|
// Update the current activity to reflect the agent invocation.
|
|
parentAgent.UpdateCurrentActivity(fo?.CurrentActivity);
|
|
|
|
// Invoke the inner agent.
|
|
var response = await parentAgent.InnerAgent.RunAsync(messages, fo?.Session, fo?.Options, cancellationToken).ConfigureAwait(false);
|
|
|
|
// Wrap the response in a ChatResponse so we can pass it back through OpenTelemetryChatClient.
|
|
return response.AsChatResponse();
|
|
}
|
|
|
|
public async IAsyncEnumerable<ChatResponseUpdate> GetStreamingResponseAsync(
|
|
IEnumerable<ChatMessage> messages, ChatOptions? options = null, [EnumeratorCancellation] CancellationToken cancellationToken = default)
|
|
{
|
|
ForwardedOptions? fo = options as ForwardedOptions;
|
|
|
|
// Update the current activity to reflect the agent invocation.
|
|
parentAgent.UpdateCurrentActivity(fo?.CurrentActivity);
|
|
|
|
// Invoke the inner agent.
|
|
await foreach (var update in parentAgent.InnerAgent.RunStreamingAsync(messages, fo?.Session, fo?.Options, cancellationToken).ConfigureAwait(false))
|
|
{
|
|
// Wrap the response updates in ChatResponseUpdates so we can pass them back through OpenTelemetryChatClient.
|
|
yield return update.AsChatResponseUpdate();
|
|
}
|
|
}
|
|
|
|
public object? GetService(Type serviceType, object? serviceKey = null) =>
|
|
// Delegate any inquiries made by the OpenTelemetryChatClient back to the parent agent.
|
|
parentAgent.GetService(serviceType, serviceKey);
|
|
|
|
public void Dispose() { }
|
|
}
|
|
}
|