Instrumenting Kubernetes operator for tracing #3655
Replies: 3 comments
-
If I understand correctly, and you want traces from your operator, you'll need instrumentation in the operator itself. If you're writing your own operators, you can use of the OpenTelemetry SDKs for instrumentation |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
This seems like a question about your code structure which it's tough to give advice on. You would likely to hold a go context and pass it to the individual steps as they are executing. That's easy to say and may be harder to accomplish. |
Beta Was this translation helpful? Give feedback.
-
We have seen examples of tracing for request and response scenario. But majority of work is done in backend in separate like Kubernetes custom controller(operator). How do we instrument a full operator flow.Because the operator workflow might be divided into different steps. Each time it will run one step. How to instrument it such that, we can see the whole tracing from beginning to end
@joe-elliott @electron0zero
Beta Was this translation helpful? Give feedback.
All reactions