vvivekiyer commented on code in PR #8907: URL: https://github.com/apache/pinot/pull/8907#discussion_r899399245
########## pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/BaseBrokerRequestHandler.java: ########## @@ -682,7 +685,9 @@ private void logBrokerResponse(long requestId, String query, RequestContext requ brokerResponse.getOfflineThreadCpuTimeNs(), brokerResponse.getOfflineSystemActivitiesCpuTimeNs(), brokerResponse.getOfflineResponseSerializationCpuTimeNs(), brokerResponse.getRealtimeTotalCpuTimeNs(), brokerResponse.getRealtimeThreadCpuTimeNs(), brokerResponse.getRealtimeSystemActivitiesCpuTimeNs(), - brokerResponse.getRealtimeResponseSerializationCpuTimeNs(), StringUtils.substring(query, 0, _queryLogLength)); + brokerResponse.getRealtimeResponseSerializationCpuTimeNs(), + ((HttpRequesterIdentity) requesterIdentity).getHttpHeaders().toString(), Review Comment: Should we just use the host (key,value) from the headers instead of dumping all the headers here? I'm asking because certain header fields (like "accept-language") might not be really useful (at least right now). ########## pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/BaseBrokerRequestHandler.java: ########## @@ -658,7 +659,8 @@ private boolean isFilterAlwaysTrue(PinotQuery pinotQuery) { } private void logBrokerResponse(long requestId, String query, RequestContext requestContext, String tableName, - int numUnavailableSegments, ServerStats serverStats, BrokerResponseNative brokerResponse, long totalTimeMs) { + int numUnavailableSegments, ServerStats serverStats, BrokerResponseNative brokerResponse, long totalTimeMs, + RequesterIdentity requesterIdentity) { Review Comment: requesterIdentity is a Nullable parameter. Can we add the annotation? It should probably be handled below to avoid nullPtrException? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org