logoalt Hacker News

gertburgertoday at 7:27 AM2 repliesview on HN

I've found their django instrumentation to be kinda useless for larger apps.

The only choices you get is full auto instrumentation, which breaks most non-trivial apps, or zero assistance/documentation.

There is no in-between where I can inject the functionality required in a way that is compatible with the application.


Replies

nuneztoday at 4:25 PM

Not the OP, but turning on auto-instrumentation for a Golang app running in Kubernetes breaks the app if the app is either:

- Running an old version of Golang (older than 1.18 if memory serves), or

- has libraries that the eBPF probes don't like.

And while I like OTel, I agree with the OP that you are absolutely going deep-sea diving if you're going to do anything beyond the examples provided (which is very easy to do!)

rmtoday at 7:43 AM

Could you please elaborate a bit on what is not working for you?

show 1 reply