-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
tracing: apply tracer provider configuration defined as part of http_connection_manager
filter
#10405
tracing: apply tracer provider configuration defined as part of http_connection_manager
filter
#10405
Changes from 23 commits
0561ccc
6ba1f98
0e36c6c
b910b95
7ca80c7
41013a4
073b24e
0801eba
880824d
f079135
49e0ec4
66b1118
fbc2921
6bb0bdb
fc6591d
2107e1f
834740f
16722dc
220f429
67668e4
b5348f9
6642087
ed40fac
e88c14f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,14 +23,24 @@ option (udpa.annotations.file_status).package_version_status = ACTIVE; | |
// [#protodoc-title: Tracing] | ||
// Tracing :ref:`architecture overview <arch_overview_tracing>`. | ||
|
||
// The tracing configuration specifies global | ||
// settings for the HTTP tracer used by Envoy. The configuration is defined by | ||
// the :ref:`Bootstrap <envoy_api_msg_config.bootstrap.v3.Bootstrap>` :ref:`tracing | ||
// <envoy_api_field_config.bootstrap.v3.Bootstrap.tracing>` field. Envoy may support other tracers | ||
// in the future, but right now the HTTP tracer is the only one supported. | ||
// The tracing configuration specifies settings for an HTTP tracer provider used by Envoy. | ||
// | ||
// Envoy may support other tracers in the future, but right now the HTTP tracer is the only one | ||
// supported. | ||
// | ||
// .. attention:: | ||
// | ||
// Use of this message type has been deprecated in favor of direct use of | ||
// :ref:`Tracing.Http <envoy_api_msg_config.trace.v3.Tracing.Http>`. | ||
message Tracing { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this message actually used anymore or just the inner HTTP message? Should this message actually be tagged for deletion with the inner message moved somehow? I don't think the tool supports this but we might want to file an issue here? cc @htuch There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I don't see a support for marking the entire message type as I've added an "attention" message to @htuch Should I open an issue or you can phrase it better what needs to be done ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please open an issue to track this. We will need some tooling work I think to make sure this message gets deleted/moved/etc. I'm not sure the best way of handling. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. opened #10740 |
||
option (udpa.annotations.versioning).previous_message_type = "envoy.config.trace.v2.Tracing"; | ||
|
||
// Configuration for an HTTP tracer provider used by Envoy. | ||
// | ||
// The configuration is defined by the | ||
// :ref:`HttpConnectionManager.Tracing <envoy_api_msg_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.Tracing>` | ||
// :ref:`provider <envoy_api_field_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.Tracing.provider>` | ||
// field. | ||
message Http { | ||
option (udpa.annotations.versioning).previous_message_type = | ||
"envoy.config.trace.v2.Tracing.Http"; | ||
|
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.
One question before deprecating, do you have thoughts on #10576?
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.
@htuch Sorry, didn't notice in time.
I've replied here.