Hi all, I'd like to add a session-oriented counterpart to TSHttpIsInternalRequest, named TSHttpIsInternalSession:
TSReturnCode TSHttpIsInternalSession(TSHttpSsn ssnp); This API has identical semantics to TSHttpIsInternalRequest, except that it operates on a TSHttpSsn instead of a TSHttpTxn. The use case for this is the tcpinfo plugin; I want to avoid sampling TCP statistics for internal sessions, because they are not going to give meaningful data. The tcpinfo plugin samples at session start time, where the transaction is not available yet. https://issues.apache.org/jira/browse/TS-2855 cheers, James