Skip to content
Open
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
4 changes: 4 additions & 0 deletions proto/sentry_protos/snuba/v1/request_common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ message RequestMeta {

// how to query the downsampled storages
DownsampledStorageConfig downsampled_storage_config = 12;

// full fidelity retention setting. allows for querying data that
// differs from the standard retention_days
optional uint32 retention_days = 13;
}

message ResponseMeta {
Expand Down
4 changes: 4 additions & 0 deletions rust/src/sentry_protos.snuba.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,10 @@ pub struct RequestMeta {
/// how to query the downsampled storages
#[prost(message, optional, tag = "12")]
pub downsampled_storage_config: ::core::option::Option<DownsampledStorageConfig>,
/// full fidelity retention setting. allows for querying data that
/// differs from the standard retention_days
#[prost(uint32, optional, tag = "13")]
pub retention_days: ::core::option::Option<u32>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ResponseMeta {
Expand Down
Loading