jainankitk commented on code in PR #14413: URL: https://github.com/apache/lucene/pull/14413#discussion_r2231982968
########## lucene/sandbox/src/java/org/apache/lucene/sandbox/search/QueryProfilerResult.java: ########## @@ -31,39 +31,69 @@ * queries if applicable */ public class QueryProfilerResult { + enum AggregationType { + // Leaf level is most verbose, practically no aggregation + LEAF, + // Aggregate leaf level breakdowns based on slice + SLICE, + // Aggregate leaf level breakdowns based on thread execution + THREAD + } Review Comment: Yeah, only `THREAD` is being used for now. I was planning to introduce other implementations like `LEAF` later, but I guess we can add this enum at that point. -- 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: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org