introduce
If you’ve ever struggled to instrument legacy apps or non-standard services for observability, OpenTelemetry_SideCar is here to help. This project offers a non-intrusive way to export metrics and traces via OpenTelemetry using a sidecar approach — no SDK required in your main app.
🌐 Project Overview
📦 Repo: isdaniel/OpenTelemetry_SideCar
OpenTelemetry_SideCar is a standalone proxy service that collects metrics and traces outside of your application and forwards them to a telemetry backend (e.g., Prometheus, Jaeger, or Azure Monitor).
💡 Why a Sidecar?
In cloud-native systems, a sidecar is a helper container or process that runs alongside your main application. It can observe, extend, or enhance app behavior without changing application code. This pattern is ideal for adding observability when:
- You can’t modify the original code (e.g., closed-source, legacy binaries).
- You want to centralize telemetry logic.
- You’re aiming for a unified instrumentation strategy.



