I have two servers running the same application behind a load balancer (HA setup). Both use the OpenTelemetry Collector to ship logs to Oracle APM via OTLP.
I want all logs (e.g., from osb_server1 and osb_server2) to appear under one service, like APP-OSB-Server1-DiagnLogs, but still be able to tell which server sent which log (e.g., via host.name or log.source).
How can I configure the resource processor or pipeline so that:
Logs from both servers go under the same service.name
No duplicate services are created
I can still identify the source server?
Any best practices for multi-node setups with OpenTelemetry and APM?