@@ -492,9 +492,9 @@ internal void UpdateWithExemplar(long number, ReadOnlySpan<KeyValuePair<string,
492
492
}
493
493
}
494
494
495
- this . CompleteUpdate ( ) ;
496
-
497
495
this . UpdateExemplar ( number , tags , offerExemplar ) ;
496
+
497
+ this . CompleteUpdate ( ) ;
498
498
}
499
499
500
500
internal void Update ( double number )
@@ -608,9 +608,9 @@ internal void UpdateWithExemplar(double number, ReadOnlySpan<KeyValuePair<string
608
608
}
609
609
}
610
610
611
- this . CompleteUpdate ( ) ;
612
-
613
611
this . UpdateExemplar ( number , tags , offerExemplar ) ;
612
+
613
+ this . CompleteUpdate ( ) ;
614
614
}
615
615
616
616
internal void TakeSnapshot ( bool outputDelta )
@@ -899,9 +899,9 @@ private void UpdateHistogram(double number, ReadOnlySpan<KeyValuePair<string, ob
899
899
900
900
this . mpComponents . ReleaseLock ( ) ;
901
901
902
- this . CompleteUpdate ( ) ;
903
-
904
902
this . UpdateExemplar ( number , tags , offerExemplar ) ;
903
+
904
+ this . CompleteUpdate ( ) ;
905
905
}
906
906
907
907
private void UpdateHistogramWithMinMax ( double number , ReadOnlySpan < KeyValuePair < string , object ? > > tags = default , bool offerExemplar = false )
@@ -923,9 +923,9 @@ private void UpdateHistogramWithMinMax(double number, ReadOnlySpan<KeyValuePair<
923
923
924
924
this . mpComponents . ReleaseLock ( ) ;
925
925
926
- this . CompleteUpdate ( ) ;
927
-
928
926
this . UpdateExemplar ( number , tags , offerExemplar ) ;
927
+
928
+ this . CompleteUpdate ( ) ;
929
929
}
930
930
931
931
private void UpdateHistogramWithBuckets ( double number , ReadOnlySpan < KeyValuePair < string , object ? > > tags = default , bool offerExemplar = false )
@@ -947,9 +947,9 @@ private void UpdateHistogramWithBuckets(double number, ReadOnlySpan<KeyValuePair
947
947
948
948
this . mpComponents . ReleaseLock ( ) ;
949
949
950
- this . CompleteUpdate ( ) ;
951
-
952
950
this . UpdateExemplar ( number , tags , offerExemplar , bucketIndex ) ;
951
+
952
+ this . CompleteUpdate ( ) ;
953
953
}
954
954
955
955
private void UpdateHistogramWithBucketsAndMinMax ( double number , ReadOnlySpan < KeyValuePair < string , object ? > > tags = default , bool offerExemplar = false )
@@ -974,9 +974,9 @@ private void UpdateHistogramWithBucketsAndMinMax(double number, ReadOnlySpan<Key
974
974
975
975
this . mpComponents . ReleaseLock ( ) ;
976
976
977
- this . CompleteUpdate ( ) ;
978
-
979
977
this . UpdateExemplar ( number , tags , offerExemplar , bucketIndex ) ;
978
+
979
+ this . CompleteUpdate ( ) ;
980
980
}
981
981
982
982
private void UpdateBase2ExponentialHistogram ( double number , ReadOnlySpan < KeyValuePair < string , object ? > > tags = default , bool offerExemplar = false )
@@ -1002,9 +1002,9 @@ private void UpdateBase2ExponentialHistogram(double number, ReadOnlySpan<KeyValu
1002
1002
1003
1003
this . mpComponents . ReleaseLock ( ) ;
1004
1004
1005
- this . CompleteUpdate ( ) ;
1006
-
1007
1005
this . UpdateExemplar ( number , tags , offerExemplar ) ;
1006
+
1007
+ this . CompleteUpdate ( ) ;
1008
1008
}
1009
1009
1010
1010
private void UpdateBase2ExponentialHistogramWithMinMax ( double number , ReadOnlySpan < KeyValuePair < string , object ? > > tags = default , bool offerExemplar = false )
@@ -1033,9 +1033,9 @@ private void UpdateBase2ExponentialHistogramWithMinMax(double number, ReadOnlySp
1033
1033
1034
1034
this . mpComponents . ReleaseLock ( ) ;
1035
1035
1036
- this . CompleteUpdate ( ) ;
1037
-
1038
1036
this . UpdateExemplar ( number , tags , offerExemplar ) ;
1037
+
1038
+ this . CompleteUpdate ( ) ;
1039
1039
}
1040
1040
1041
1041
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
0 commit comments