Skip to content

Commit 6a8c1f0

Browse files
feat(eap): add BinaryFormula to AggregationComparisonFilter (#133)
* feat(eap): add BinaryFormula to AggregationComparisonFilter * chore: Regenerate Rust bindings --------- Co-authored-by: getsantry[bot] <66042841+getsantry[bot]@users.noreply.github.com>
1 parent a716b98 commit 6a8c1f0

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

proto/sentry_protos/snuba/v1/endpoint_trace_item_table.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ message AggregationComparisonFilter {
6666
double val = 5;
6767
AttributeAggregation aggregation = 4;
6868
AttributeConditionalAggregation conditional_aggregation = 6;
69+
Column.BinaryFormula formula = 7;
6970
}
7071

7172
message AggregationFilter {

rust/src/sentry_protos.snuba.v1.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1627,6 +1627,8 @@ pub struct AggregationComparisonFilter {
16271627
pub aggregation: ::core::option::Option<AttributeAggregation>,
16281628
#[prost(message, optional, tag = "6")]
16291629
pub conditional_aggregation: ::core::option::Option<AttributeConditionalAggregation>,
1630+
#[prost(message, optional, tag = "7")]
1631+
pub formula: ::core::option::Option<column::BinaryFormula>,
16301632
}
16311633
/// Nested message and enum types in `AggregationComparisonFilter`.
16321634
pub mod aggregation_comparison_filter {

0 commit comments

Comments
 (0)