Setting Unique Id for every instance on JobWorker

I want to use unique id for every instance which is run in camunda so that it is easy to track in logs. Currently I am using MDC to set id on @jobworker annotation using aop @before and @After annotation. But we found that same id is duplicated across multiple instances. Is there any better way to do it?