Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ message TraceItemAttributeValuesRequest {
message TraceItemAttributeValuesResponse {
// all the values that matched the criteria specified in the request
repeated string values = 1;
repeated int64 counts = 3;

// page token for the next page of results
PageToken page_token = 6;
Expand Down
2 changes: 2 additions & 0 deletions rust/src/sentry_protos.snuba.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1738,6 +1738,8 @@ pub struct TraceItemAttributeValuesResponse {
/// all the values that matched the criteria specified in the request
#[prost(string, repeated, tag = "1")]
pub values: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(int64, repeated, tag = "3")]
pub counts: ::prost::alloc::vec::Vec<i64>,
/// page token for the next page of results
#[prost(message, optional, tag = "6")]
pub page_token: ::core::option::Option<PageToken>,
Expand Down
Loading