How to get user name and IP address in trigger?

Hi

Is there a way to get user name and his IP address inside of trigger function body?
I’d like to know what user made some inserts, updates etc.

For example:

exports = function(changeEvent) {
  const response = context.http.get({ url: `example.com?user=${user}&ip=${ip}`});
}