File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ pub struct ProjectConfig {
44
44
/// Maximum event retention for the organization.
45
45
#[ serde( skip_serializing_if = "Option::is_none" ) ]
46
46
pub event_retention : Option < u16 > ,
47
+ /// Maximum sampled event retention for the organization.
48
+ #[ serde( skip_serializing_if = "Option::is_none" ) ]
49
+ pub downsampled_event_retention : Option < u16 > ,
47
50
/// Usage quotas for this project.
48
51
#[ serde( skip_serializing_if = "Vec::is_empty" ) ]
49
52
pub quotas : Vec < Quota > ,
@@ -138,6 +141,7 @@ impl Default for ProjectConfig {
138
141
filter_settings : ProjectFiltersConfig :: default ( ) ,
139
142
datascrubbing_settings : DataScrubbingConfig :: default ( ) ,
140
143
event_retention : None ,
144
+ downsampled_event_retention : None ,
141
145
quotas : Vec :: new ( ) ,
142
146
sampling : None ,
143
147
measurements : None ,
You can’t perform that action at this time.
0 commit comments