-
Notifications
You must be signed in to change notification settings - Fork 83
Description
Hi,
I am using the OpenTelemetryRumInitializer.initialize function in my Android project to create the OpenTelemetryRum instance and I would like to set a client TLS. With io.opentelemetry.android.instrumentation (+ io.opentelemetry.exporter.otlp) it was possible to build a OtlpHttpLogRecordExporter and set the client TLS to it with the addLoggerProviderCustomizer function:
val logExporter = OtlpHttpLogRecordExporter.builder().setEndpoint(BASE_URL).setClientTls(keyBytes, crtBytes) .build()
But if I understand correctly, there is currently no solution for this in the initializer configuration. Is there currently a way to set up a TLS certificate, or will it be possible to specify something in the configuration later?
Thank you in advance for the response!