-
Notifications
You must be signed in to change notification settings - Fork 238
/
Copy pathOpenTelemetryScope.cs
222 lines (188 loc) · 7.53 KB
/
OpenTelemetryScope.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
using OpenAI.Chat;
using System;
using System.ClientModel;
using System.Diagnostics;
using System.Diagnostics.Metrics;
using static OpenAI.Telemetry.OpenTelemetryConstants;
namespace OpenAI.Telemetry;
internal class OpenTelemetryScope : IDisposable
{
private static readonly ActivitySource s_chatSource = new ActivitySource("Experimental.OpenAI.ChatClient");
private static readonly Meter s_chatMeter = new Meter("Experimental.OpenAI.ChatClient");
// TODO: add explicit histogram buckets once System.Diagnostics.DiagnosticSource 9.0 is used
private static readonly Histogram<double> s_duration = s_chatMeter.CreateHistogram<double>(GenAiClientOperationDurationMetricName, "s", "Measures GenAI operation duration.");
private static readonly Histogram<long> s_tokens = s_chatMeter.CreateHistogram<long>(GenAiClientTokenUsageMetricName, "{token}", "Measures the number of input and output token used.");
private readonly string _operationName;
private readonly string _serverAddress;
private readonly int _serverPort;
private readonly string _requestModel;
private Stopwatch _duration;
private Activity _activity;
private TagList _commonTags;
private OpenTelemetryScope(
string model, string operationName,
string serverAddress, int serverPort)
{
_requestModel = model;
_operationName = operationName;
_serverAddress = serverAddress;
_serverPort = serverPort;
}
private static bool IsChatEnabled => s_chatSource.HasListeners() || s_tokens.Enabled || s_duration.Enabled;
public static OpenTelemetryScope StartChat(string model, string operationName,
string serverAddress, int serverPort, ChatCompletionOptions options)
{
if (IsChatEnabled)
{
var scope = new OpenTelemetryScope(model, operationName, serverAddress, serverPort);
scope.StartChat(options);
return scope;
}
return null;
}
private void StartChat(ChatCompletionOptions options)
{
_duration = Stopwatch.StartNew();
_commonTags = new TagList
{
{ GenAiSystemKey, GenAiSystemValue },
{ GenAiRequestModelKey, _requestModel },
{ ServerAddressKey, _serverAddress },
{ ServerPortKey, _serverPort },
{ GenAiOperationNameKey, _operationName },
};
_activity = s_chatSource.StartActivity(string.Concat(_operationName, " ", _requestModel), ActivityKind.Client);
if (_activity?.IsAllDataRequested == true)
{
RecordCommonAttributes();
SetActivityTagIfNotNull(GenAiRequestMaxTokensKey, options?.MaxOutputTokenCount);
SetActivityTagIfNotNull(GenAiRequestTemperatureKey, options?.Temperature);
SetActivityTagIfNotNull(GenAiRequestTopPKey, options?.TopP);
}
return;
}
public void RecordChatCompletion(ChatCompletion completion)
{
RecordMetrics(completion.Model, null, completion.Usage?.InputTokenCount, completion.Usage?.OutputTokenCount);
if (_activity?.IsAllDataRequested == true)
{
RecordResponseAttributes(completion.Id, completion.Model, completion.FinishReason, completion.Usage);
}
}
public void RecordException(Exception ex)
{
var errorType = GetErrorType(ex);
RecordMetrics(null, errorType, null, null);
if (_activity?.IsAllDataRequested == true)
{
_activity?.SetTag(OpenTelemetryConstants.ErrorTypeKey, errorType);
_activity?.SetStatus(ActivityStatusCode.Error, ex?.Message ?? errorType);
}
}
public void Dispose()
{
_activity?.Stop();
}
private void RecordCommonAttributes()
{
_activity.SetTag(GenAiSystemKey, GenAiSystemValue);
_activity.SetTag(GenAiRequestModelKey, _requestModel);
_activity.SetTag(ServerAddressKey, _serverAddress);
_activity.SetTag(ServerPortKey, _serverPort);
_activity.SetTag(GenAiOperationNameKey, _operationName);
}
private void RecordMetrics(string responseModel, string errorType, int? inputTokensUsage, int? outputTokensUsage)
{
// tags is a struct, let's copy and modify them
var tags = _commonTags;
if (responseModel != null)
{
tags.Add(GenAiResponseModelKey, responseModel);
}
if (inputTokensUsage != null)
{
var inputUsageTags = tags;
inputUsageTags.Add(GenAiTokenTypeKey, "input");
s_tokens.Record(inputTokensUsage.Value, inputUsageTags);
}
if (outputTokensUsage != null)
{
var outputUsageTags = tags;
outputUsageTags.Add(GenAiTokenTypeKey, "output");
s_tokens.Record(outputTokensUsage.Value, outputUsageTags);
}
if (errorType != null)
{
tags.Add(ErrorTypeKey, errorType);
}
s_duration.Record(_duration.Elapsed.TotalSeconds, tags);
}
private void RecordResponseAttributes(string responseId, string model, ChatFinishReason? finishReason, ChatTokenUsage usage)
{
SetActivityTagIfNotNull(GenAiResponseIdKey, responseId);
SetActivityTagIfNotNull(GenAiResponseModelKey, model);
SetActivityTagIfNotNull(GenAiUsageInputTokensKey, usage?.InputTokenCount);
SetActivityTagIfNotNull(GenAiUsageOutputTokensKey, usage?.OutputTokenCount);
SetFinishReasonAttribute(finishReason);
}
private void SetFinishReasonAttribute(ChatFinishReason? finishReason)
{
if (finishReason == null)
{
return;
}
var reasonStr = finishReason switch
{
ChatFinishReason.ContentFilter => "content_filter",
ChatFinishReason.FunctionCall => "function_call",
ChatFinishReason.Length => "length",
ChatFinishReason.Stop => "stop",
ChatFinishReason.ToolCalls => "tool_calls",
_ => finishReason.ToString(),
};
// There could be multiple finish reasons, so semantic conventions use array type for the corrresponding attribute.
// It's likely to change, but for now let's report it as array.
_activity.SetTag(GenAiResponseFinishReasonKey, new[] { reasonStr });
}
private string GetChatMessageRole(ChatMessageRole? role) =>
role switch
{
ChatMessageRole.Assistant => "assistant",
ChatMessageRole.Function => "function",
ChatMessageRole.System => "system",
ChatMessageRole.Tool => "tool",
ChatMessageRole.User => "user",
_ => role?.ToString(),
};
private string GetErrorType(Exception exception)
{
if (exception is ClientResultException requestFailedException)
{
// TODO (lmolkova) when we start targeting .NET 8 we should put
// requestFailedException.InnerException.HttpRequestError into error.type
return requestFailedException.Status.ToString();
}
return exception?.GetType()?.FullName;
}
private void SetActivityTagIfNotNull(string name, object value)
{
if (value != null)
{
_activity.SetTag(name, value);
}
}
private void SetActivityTagIfNotNull(string name, int? value)
{
if (value.HasValue)
{
_activity.SetTag(name, value.Value);
}
}
private void SetActivityTagIfNotNull(string name, float? value)
{
if (value.HasValue)
{
_activity.SetTag(name, value.Value);
}
}
}