long elapsed = configure {
request.uri = 'http://localhost:10101/foo'
execution.interceptor(GET) { ChainedHttpConfig cfg, Function<ChainedHttpConfig, Object> fx ->
long started = System.currentTimeMillis()
fx.apply(cfg)
System.currentTimeMillis() - started
}
}.get(Long, NO_OP)