Skip to content

Commit

Permalink
Fix StackExchangeRedisInstrumentationOptions xml docs (#1842)
Browse files Browse the repository at this point in the history
  • Loading branch information
gao-artur authored May 24, 2024
1 parent f1fd71f commit 1d112c8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class StackExchangeRedisInstrumentationOptions
public TimeSpan FlushInterval { get; set; } = TimeSpan.FromSeconds(10);

/// <summary>
/// Gets or sets a value indicating whether or not the <see cref="StackExchangeRedisConnectionInstrumentation"/> should use reflection to get more detailed <see cref="SemanticConventions.AttributeDbStatement"/> tag values. Default value: False.
/// Gets or sets a value indicating whether the <see cref="StackExchangeRedisConnectionInstrumentation"/> should use reflection to get more detailed <see cref="SemanticConventions.AttributeDbStatement"/> tag values. Default value: <see langword="false"/>.
/// </summary>
public bool SetVerboseDatabaseStatements { get; set; }

Expand All @@ -32,7 +32,7 @@ public class StackExchangeRedisInstrumentationOptions
public Action<Activity, IProfiledCommand>? Enrich { get; set; }

/// <summary>
/// Gets or sets a value indicating whether or not the <see cref="StackExchangeRedisConnectionInstrumentation"/> should enrich Activity with <see cref="ActivityEvent"/> entries about the Redis command processing/lifetime. Defaults to <see cref="bool">true</see>.
/// Gets or sets a value indicating whether the <see cref="StackExchangeRedisConnectionInstrumentation"/> should enrich Activity with <see cref="ActivityEvent"/> entries about the Redis command processing/lifetime. Defaults to <see langword="true"/>.
/// </summary>
public bool EnrichActivityWithTimingEvents { get; set; } = true;
}

0 comments on commit 1d112c8

Please sign in to comment.