File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 33
33
- Process logs in all non-proxy Relays. ([ #4973 ] ( https://github.com/getsentry/relay/pull/4973 ) )
34
34
- Add support for pre-hashed signatures. ([ #5012 ] ( https://github.com/getsentry/relay/pull/5012 ) )
35
35
- Add producer_name tag, and more rdkafka stats. ([ #5031 ] ( https://github.com/getsentry/relay/pull/5031 ) )
36
+ - Change the default configuration to produce to ` snuba-items ` . ([ #5055 ] ( https://github.com/getsentry/relay/pull/5055 ) )
36
37
37
38
## 25.7.0
38
39
Original file line number Diff line number Diff line change @@ -1223,8 +1223,8 @@ pub struct SpanProducers {
1223
1223
impl Default for SpanProducers {
1224
1224
fn default ( ) -> Self {
1225
1225
Self {
1226
- produce_json : true ,
1227
- produce_protobuf : false ,
1226
+ produce_json : false ,
1227
+ produce_protobuf : true ,
1228
1228
}
1229
1229
}
1230
1230
}
Original file line number Diff line number Diff line change @@ -78,6 +78,12 @@ def inner(options=None):
78
78
f"relay-test-relayconfig-{ uuid .uuid4 ()} "
79
79
)
80
80
81
+ if processing .get ("span_producers" ) is None :
82
+ processing ["span_producers" ] = {
83
+ "produce_json" : True ,
84
+ "produce_protobuf" : False ,
85
+ }
86
+
81
87
return options
82
88
83
89
return inner
Original file line number Diff line number Diff line change 20
20
from .consts import (
21
21
TRANSACTION_EXTRACT_MIN_SUPPORTED_VERSION ,
22
22
)
23
- from .test_metrics import TEST_CONFIG
24
23
from .test_store import make_transaction
25
24
25
+ TEST_CONFIG = {
26
+ "aggregator" : {
27
+ "bucket_interval" : 1 ,
28
+ "initial_delay" : 0 ,
29
+ "shift_key" : "none" ,
30
+ }
31
+ }
32
+
26
33
27
34
@pytest .mark .parametrize ("performance_issues_spans" , [False , True ])
28
35
@pytest .mark .parametrize ("discard_transaction" , [False , True ])
You can’t perform that action at this time.
0 commit comments