<@U81RS1P4H> we've just released v3.15.0, in which...
# http4k
d
@scap we've just released v3.15.0, in which we've modified the standard ResponseFilters API to enable you to add custom labels to any transaction. you can use it in vanilla form:
Copy code
val audit = ResponseFilters.ReportHttpTransaction { tx: HttpTransaction ->
        logger("my call to ${tx.request.uri} returned ${tx.response.status} and took ${tx.duration.toMillis()}")
    }
, or pass an
HttpTransactionLabeller
to the `ReportHttpTransaction`to add your own labels. The field you want which replaces the UriTemplate in this case is
HttpTransaction.routingGroup
(although it's just implemented as a label under the covers).