Skip to content

Commit

Permalink
Add health check dimension in the default constructor for tag definit…
Browse files Browse the repository at this point in the history
…ions.
  • Loading branch information
Andrei Ionescu committed Jan 6, 2025
1 parent 600e48f commit 97ee90c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ namespace Microsoft.Omex.Extensions.Activities
public class CustomTagObjectsDimensions : ICustomTagObjectsDimensions
{
/// <summary>
/// Default constructor which has <seealso cref="ActivityTagKeys.Result"/>, <seealso cref="ActivityTagKeys.SubType"/>, <seealso cref="ActivityTagKeys.Metadata"/>
/// Default constructor which has <seealso cref="ActivityTagKeys.Result"/>, <seealso cref="ActivityTagKeys.SubType"/>, <seealso cref="ActivityTagKeys.Metadata"/>, <seealso cref="ActivityTagKeys.HealthCheckResult"/>
/// </summary>
public CustomTagObjectsDimensions() => CustomDimensions = new HashSet<string>() { ActivityTagKeys.Result, ActivityTagKeys.SubType, ActivityTagKeys.Metadata };
public CustomTagObjectsDimensions() => CustomDimensions = new HashSet<string>() { ActivityTagKeys.Result, ActivityTagKeys.SubType, ActivityTagKeys.Metadata, ActivityTagKeys.HealthCheckResult };

/// <summary>
/// Override the default constructor to specify custom dimension set.
Expand Down

0 comments on commit 97ee90c

Please sign in to comment.