I am trying to divine what ip or hostname a request originated from, is that something that can be made available in the controller so I can log it?
public async endpoint(
@Request() request: any,
): Promise<IMyResponse | IError> {
console.log(request.getSourceHost());
}