diff --git a/sdk/monitor/Azure.Monitor.OpenTelemetry.AspNetCore/CHANGELOG.md b/sdk/monitor/Azure.Monitor.OpenTelemetry.AspNetCore/CHANGELOG.md index 16308782c1382..3dce112a6f5c1 100644 --- a/sdk/monitor/Azure.Monitor.OpenTelemetry.AspNetCore/CHANGELOG.md +++ b/sdk/monitor/Azure.Monitor.OpenTelemetry.AspNetCore/CHANGELOG.md @@ -10,6 +10,8 @@ ### Other Changes +* Removed the experimental suffix from the profile_id attribute. The profile_id attribute is added to spans when a profiling session is in progress. + ## 1.2.0-beta.3 (2024-04-19) ### Features Added diff --git a/sdk/monitor/Azure.Monitor.OpenTelemetry.AspNetCore/src/Internals/Profiling/ProfilingSessionTraceProcessor.cs b/sdk/monitor/Azure.Monitor.OpenTelemetry.AspNetCore/src/Internals/Profiling/ProfilingSessionTraceProcessor.cs index a80897c8a18f7..82b80a91a2f2b 100644 --- a/sdk/monitor/Azure.Monitor.OpenTelemetry.AspNetCore/src/Internals/Profiling/ProfilingSessionTraceProcessor.cs +++ b/sdk/monitor/Azure.Monitor.OpenTelemetry.AspNetCore/src/Internals/Profiling/ProfilingSessionTraceProcessor.cs @@ -19,10 +19,9 @@ internal sealed class ProfilingSessionTraceProcessor : BaseProcessor /// records the profiling session ID. /// /// - /// Experimental until formalization of OTEP profiles data format. - /// See . + /// See . /// - internal const string TagName = "profile_id_experimental"; + internal const string TagName = "profile_id"; private readonly ProfilingSessionEventSource _eventSource = ProfilingSessionEventSource.Current;