Skip to content

Commit

Permalink
Distributed Tracing Documentation : Fixes the default value mentioned…
Browse files Browse the repository at this point in the history
… in code doc (#4357)

* Distributed Tracing Dcoumentation : Changed the default value mentioned in comment

* Update Microsoft.Azure.Cosmos/src/CosmosThresholdOptions.cs

Co-authored-by: Matias Quaranta <ealsur@users.noreply.github.com>

* Update Microsoft.Azure.Cosmos/src/CosmosThresholdOptions.cs

Co-authored-by: Matias Quaranta <ealsur@users.noreply.github.com>

---------

Co-authored-by: Matias Quaranta <ealsur@users.noreply.github.com>
  • Loading branch information
sourabh1007 and ealsur committed Mar 22, 2024
1 parent ab80170 commit d1f879f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Microsoft.Azure.Cosmos/src/CosmosThresholdOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ public class CosmosThresholdOptions
/// <summary>
/// Latency Threshold for non point operations i.e. Query
/// </summary>
/// <value>500 ms</value>
/// <value>3 seconds</value>
public TimeSpan NonPointOperationLatencyThreshold { get; set; } = TimeSpan.FromSeconds(3);

/// <summary>
/// Latency Threshold for point operations i.e operation other than Query
/// </summary>
/// <value>100 ms</value>
/// <value>1 second</value>
public TimeSpan PointOperationLatencyThreshold { get; set; } = TimeSpan.FromSeconds(1);
}
}

0 comments on commit d1f879f

Please sign in to comment.