How can I get tracker inside custom pipeline component?

Hello! I want to extract some metadata from user’s request through the pipeline component. The request looks like:

“sender”: “Me”, “message”:“hi”, “metadata”:{ “from”:{ “id”:“12345”, “channel”:“some.channel” } }

But I have no ideas hot to access tracker from pipeline component. I have just message object:

def process(self, message: Message, **kwargs: Any) -> None: