Hi I seem to get ip adress added automatically to ...
# general
m
Hi I seem to get ip adress added automatically to the event by rudderstack. Can I delete that field somehow? I only found example transformations for masking and hashing?
q
Yes, you can write a transformation to delete the ip field from your event object. Something like this
Copy code
export function transformEvent(event) {
    if (event.request_ip) {
    delete event.request_ip;
    }
    return event;
}