@@ -859,7 +859,7 @@ public virtual async Task<Dictionary<TKey, TValue>> BatchGetAsync(List<TKey> key
859859 tags :
860860 [
861861 new KeyValuePair < string , object > ( TelemetryConstants . TagNames . CacheName , GetCacheName ( ) ) ,
862- new KeyValuePair < string , object > ( "key_count" , keyList . Count )
862+ new KeyValuePair < string , object > ( TelemetryConstants . TagNames . KeyCount , keyList . Count )
863863 ] ) ;
864864
865865 var missingKeys = new List < ( TKey Key , string FullKey ) > ( ) ;
@@ -946,7 +946,7 @@ public virtual async Task<Dictionary<TKey, TValue>> BatchGetOrLoadAsync(List<TKe
946946 tags :
947947 [
948948 new KeyValuePair < string , object > ( TelemetryConstants . TagNames . CacheName , GetCacheName ( ) ) ,
949- new KeyValuePair < string , object > ( "key_count" , keyList . Count )
949+ new KeyValuePair < string , object > ( TelemetryConstants . TagNames . KeyCount , keyList . Count )
950950 ] ) ;
951951
952952 // 1. 尝试批量获取缓存
@@ -1072,7 +1072,7 @@ public virtual async Task<long> BatchEvictAsync(List<TKey> keyList)
10721072 tags :
10731073 [
10741074 new KeyValuePair < string , object > ( TelemetryConstants . TagNames . CacheName , GetCacheName ( ) ) ,
1075- new KeyValuePair < string , object > ( "key_count" , keyList . Count )
1075+ new KeyValuePair < string , object > ( TelemetryConstants . TagNames . KeyCount , keyList . Count )
10761076 ] ) ;
10771077
10781078 // 1. Remove from Local Cache
0 commit comments