Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions opentelemetry-proto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## vNext

- Update proto definitions to v1.7.0.
- Added Rust generated protos for profiles collector. [#3077](https://github.com/open-telemetry/opentelemetry-rust/pull/3077)

## 0.30.0

Expand Down
9 changes: 8 additions & 1 deletion opentelemetry-proto/src/proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,13 @@ pub mod tonic {
#[path = "opentelemetry.proto.collector.trace.v1.rs"]
pub mod v1;
}

#[cfg(feature = "profiles")]
#[path = ""]
pub mod profiles {
#[path = "opentelemetry.proto.collector.profiles.v1development.rs"]
pub mod v1development;
}
}

/// Common types used across all signals
Expand Down Expand Up @@ -295,7 +302,7 @@ pub mod tonic {
#[path = ""]
pub mod profiles {
#[path = "opentelemetry.proto.profiles.v1development.rs"]
pub mod v1;
pub mod v1development;
}

pub use crate::transform::common::tonic::Attributes;
Expand Down
Loading
Loading