@@ -659,6 +659,11 @@ class TStatService : public TActorBootstrapped<TStatService> {
659
659
return ;
660
660
}
661
661
662
+ LOG_DEBUG_S (TlsActivationContext->AsActorContext (), NKikimrServices::STATISTICS,
663
+ " Handle TEvStatistics::TEvGetStatistics, request id = " << requestId
664
+ << " , ReplyToActorId = " << request.ReplyToActorId
665
+ << " , StatRequests.size() = " << request.StatRequests .size ());
666
+
662
667
if (request.StatType == EStatType::COUNT_MIN_SKETCH) {
663
668
request.StatResponses .reserve (request.StatRequests .size ());
664
669
ui32 reqIndex = 0 ;
@@ -694,6 +699,9 @@ class TStatService : public TActorBootstrapped<TStatService> {
694
699
695
700
auto cookie = navigate->Cookie ;
696
701
702
+ LOG_DEBUG_S (TlsActivationContext->AsActorContext (), NKikimrServices::STATISTICS,
703
+ " Handle TEvTxProxySchemeCache::TEvNavigateKeySetResult, request id = " << cookie);
704
+
697
705
if (cookie == ResolveSACookie) {
698
706
Y_ABORT_UNLESS (navigate->ResultSet .size () == 1 );
699
707
auto & entry = navigate->ResultSet .back ();
@@ -1113,7 +1121,9 @@ class TStatService : public TActorBootstrapped<TStatService> {
1113
1121
auto & request = itRequest->second ;
1114
1122
1115
1123
LOG_DEBUG_S (TlsActivationContext->AsActorContext (), NKikimrServices::STATISTICS,
1116
- " ReplySuccess(), request id = " << requestId);
1124
+ " ReplySuccess(), request id = " << requestId
1125
+ << " , ReplyToActorId = " << request.ReplyToActorId
1126
+ << " , StatRequests.size() = " << request.StatRequests .size ());
1117
1127
1118
1128
auto itStatistics = Statistics.find (request.SchemeShardId );
1119
1129
if (itStatistics == Statistics.end ()) {
0 commit comments