Hi guys, I'm looking to start monitoring network w...
# spring
e
Hi guys, I'm looking to start monitoring network wait times across my application. I currently use spring-aop to have aspect oriented logging, but I have no way to connect a request received in the RestController with a function call in the data access layer unless I pass a RequestId as a parameter all the way to the dao. How does one typically handle this? Java / C# has ThreadLocal-stuff you can use to carry that type of information, I'm just not sure how to go about it in kotlin. Any ideas welcome.