Home
last modified time | relevance | path

Searched refs:AddObservation (Results 1 – 4 of 4) sorted by relevance

/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DHistogramTest.cs38 hist.AddObservation(10000); in Simple()
39 hist.AddObservation(10000); in Simple()
40 hist.AddObservation(11000); in Simple()
41 hist.AddObservation(11000); in Simple()
60 hist.AddObservation(-0.5); // should be in the first bucket in ExtremeObservations()
61 hist.AddObservation(1e12); // should be in the last bucket in ExtremeObservations()
74 hist1.AddObservation(-0.5); // should be in the first bucket in MergeSnapshots()
75 hist1.AddObservation(1e12); // should be in the last bucket in MergeSnapshots()
79 hist2.AddObservation(10000); in MergeSnapshots()
80 hist2.AddObservation(11000); in MergeSnapshots()
[all …]
DClientRunners.cs227 … threadLocalHistogram.Value.AddObservation(stopwatch.Elapsed.TotalSeconds * SecondsToNanos); in RunUnary()
246 … threadLocalHistogram.Value.AddObservation(stopwatch.Elapsed.TotalSeconds * SecondsToNanos); in RunUnaryAsync()
268 … threadLocalHistogram.Value.AddObservation(stopwatch.Elapsed.TotalSeconds * SecondsToNanos); in RunStreamingPingPongAsync()
296 … threadLocalHistogram.Value.AddObservation(stopwatch.Elapsed.TotalSeconds * SecondsToNanos); in RunGenericStreamingAsync()
DHistogram.cs64 public void AddObservation(double value) in AddObservation() method in Grpc.IntegrationTesting.Histogram
DStressTestClient.cs151 histogram.AddObservation(stopwatch.Elapsed.TotalSeconds * SecondsToNanos); in RunBodyAsync()