Currently, the OpenTelemetry instance is initialized and accessed via a static reference in MainApplication (as shown in the demo application). This approach introduces tight coupling to the application entry point and requires manual wiring for global access.
Would it be possible to introduce a pattern similar to GlobalOpenTelemetry (from Otel-java), or expose a globally accessible object within OpenTelemetryRum, allowing developers to access the instance directly throughout the application without relying on a static reference in MainApplication?