How to correctly log API call execution time
Hello everybody, I want to create some metrics related to API call time. For now, I am trying to subtract date.now and pipe.startTime using following expression (Math.trunc((Date.now() - pipe.startTime)) ) in mapper preceded by REST POST. Sceleton of...