-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Add tracing with OpenTelemetry #932
base: main
Are you sure you want to change the base?
Conversation
Hi @meobilivang. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My python
environment has the Black linter by default so it just reformats the whole file 😗
) | ||
|
||
k8s_yaml(blob(yaml)) | ||
|
||
|
||
def observability(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setting up OTEL Collector + Jaeger using helm chart
tls: | ||
insecure: true | ||
#export to Cloud Trace on GCP | ||
googlecloud: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Refer to GCP Cloud trace exporter implementation for OTEL Collector
/ok-to-test |
/retest |
ctx, span := telemetry.Tracer().Start( | ||
ctx, "controllers.GCPManagedClusterReconciler.Reconcile", | ||
trace.WithAttributes( | ||
attribute.String("name", req.Name), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: Add ReconcileId
as an attribute: controller.ReconcileIDFromContext(ctx)
690d64e
to
bbc5bf5
Compare
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
The Kubernetes project currently lacks enough contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /close |
@k8s-triage-robot: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/reopen |
@richardcase: Reopened this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: meobilivang The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/remove-lifecycle rotten |
What type of PR is this?
/kind feature
What this PR does / why we need it:
Add Distributed Tracing to provide more insights into requests propagated through CAPG. This would enhance the observability of the internal behaviors of CAPG, and offers more clues for developers to troubleshoot the system during development besides the fragmented container logs.
Which issue(s) this PR fixes:
Special notes for your reviewer:
This PR integrates new components into
Tiltfile
to launch the observability stack (OpenTelemetry Collector
&Jaeger
)TODOs:
Release note:
cc @richardcase @cpanato