Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class TargetingHttpContextMiddleware
private readonly RequestDelegate _next;
private readonly ILogger _logger;

private const string TargetingIdKey = $"Microsoft.FeatureManagement.TargetingId";
private const string TargetingIdKey = "TargetingId";

/// <summary>
/// Creates an instance of the TargetingHttpContextMiddleware
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.FeatureManagement.Telemetry.ApplicationInsights
/// </summary>
public class TargetingTelemetryInitializer : ITelemetryInitializer
{
private const string TargetingIdKey = $"Microsoft.FeatureManagement.TargetingId";
private const string TargetingIdKey = "TargetingId";

/// <summary>
/// When telemetry is initialized, adds targeting information to all relevant telemetry.
Expand Down