We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Cloud Client LibraryはOpenCensusを使っているので、OpenTelemetryにspanを出力する場合、Bridge を設定することになります。
ただ、これを設定するとCloud Trace自体のspanが大量に出てきて、結構邪魔です。
Optionを指定すれば、このspanは送られなくなります。 Cloud Trace自体のspanが見たいわけじゃなければ、disableにしておくと良いでしょう。
import "google.golang.org/api/option" gcp, err := texporter.NewExporter(texporter.WithTraceClientOptions([]option.ClientOption{option.WithTelemetryDisabled()}))
refs open-telemetry/opentelemetry-go#1928 (comment)
The text was updated successfully, but these errors were encountered:
#150 にmerge
Sorry, something went wrong.
No branches or pull requests
Cloud Client LibraryはOpenCensusを使っているので、OpenTelemetryにspanを出力する場合、Bridge を設定することになります。
ただ、これを設定するとCloud Trace自体のspanが大量に出てきて、結構邪魔です。
Cloud Trace自体のspanを送らないようにする
Optionを指定すれば、このspanは送られなくなります。
Cloud Trace自体のspanが見たいわけじゃなければ、disableにしておくと良いでしょう。
refs open-telemetry/opentelemetry-go#1928 (comment)
The text was updated successfully, but these errors were encountered: