Hi, We re measuring with a code snippet like the below, the time before we called the logger subtract the time the logger completed. Long start1 = System.currentTimeMillis();
log.info("Test logging");
Long start2 = System.currentTimeMillis();
log.info("logTime={}", start2 - start1); We have not use a tcpdump yet as this is running on a container, not able to use batch too since we needed type=raw which don't support batch configs from my understanding. Is there a way to work with Raw type and send as batch? Thanks.
... View more