Forwarding events to a private Sentry instance via a proxy API

Our Sentry instance is not exposed to the public internet so we are planning to write a proxy API that will forward events from the javascript client to our instance.

From what we can tell the Java library is only designed for building out Events and not taking a pre-existing event and forwarding it intact. In this possible or do we need to be looking at using the REST API manually?

Any reasons you cannot use a commodity edge proxy? nginx for example is able to filter by URL and method, which is what you want here (only expose the data ingress API).

unfortunately no for a myriad of reasons like “we’re a large company with lots of process around adding things like a new proxy”