public AggregatedClusterStatistic(
     AggregatedStatistic cluster,
     IReadOnlyDictionary <Uri, AggregatedStatistic> replicas)
 {
     Cluster  = cluster;
     Replicas = replicas;
 }
Esempio n. 2
0
 public bool Equals(AggregatedStatistic other) =>
 StdDev.Equals(other.StdDev) &&
 Mean.Equals(other.Mean) &&
 Timestamp.Equals(other.Timestamp) &&
 TotalCount.Equals(other.TotalCount) &&
 ErrorFraction.Equals(other.ErrorFraction);