File tree 1 file changed +4
-0
lines changed
micrometer-observation/src/main/java/io/micrometer/observation 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -948,6 +948,7 @@ public Context addHighCardinalityKeyValue(KeyValue keyValue) {
948
948
* {@link ObservationConvention#getLowCardinalityKeyValues(Context)} method.
949
949
* @param keyName name of the key
950
950
* @return this context
951
+ * @since 1.10.1
951
952
*/
952
953
public Context removeLowCardinalityKeyValue (String keyName ) {
953
954
this .lowCardinalityKeyValues .remove (keyName );
@@ -960,6 +961,7 @@ public Context removeLowCardinalityKeyValue(String keyName) {
960
961
* {@link ObservationConvention#getHighCardinalityKeyValues(Context)} method.
961
962
* @param keyName name of the key
962
963
* @return this context
964
+ * @since 1.10.1
963
965
*/
964
966
public Context removeHighCardinalityKeyValue (String keyName ) {
965
967
this .highCardinalityKeyValues .remove (keyName );
@@ -990,6 +992,7 @@ public Context addHighCardinalityKeyValues(KeyValues keyValues) {
990
992
* Removes multiple low cardinality key values at once.
991
993
* @param keyNames collection of key names
992
994
* @return this context
995
+ * @since 1.10.1
993
996
*/
994
997
public Context removeLowCardinalityKeyValues (String ... keyNames ) {
995
998
Arrays .stream (keyNames ).forEach (this ::removeLowCardinalityKeyValue );
@@ -1000,6 +1003,7 @@ public Context removeLowCardinalityKeyValues(String... keyNames) {
1000
1003
* Removes multiple high cardinality key values at once.
1001
1004
* @param keyNames collection of key names
1002
1005
* @return this context
1006
+ * @since 1.10.1
1003
1007
*/
1004
1008
public Context removeHighCardinalityKeyValues (String ... keyNames ) {
1005
1009
Arrays .stream (keyNames ).forEach (this ::removeHighCardinalityKeyValue );
You can’t perform that action at this time.
0 commit comments