forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(codecs): native JSON serialization/deserialization for special f6…
…4 values (vectordotdev#18650) * fix: native JSON serialization/deserialization for histogram buckets * regenerated fixtures * ignore prev24 tests - will revisit * remove debugging stuff * update tests * first attempt at a backwards compatible solution * cleanup, remove unused functions, clippy shenanigans * Update lib/vector-core/src/event/metric/value.rs Co-authored-by: Bruce Guenter <bruce.guenter@datadoghq.com> * implemented visitor pattern deserializer optimization --------- Co-authored-by: Bruce Guenter <bruce.guenter@datadoghq.com>
- Loading branch information
Showing
3 changed files
with
167 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
use bytes::BytesMut; | ||
use codecs::decoding::format::Deserializer; | ||
use codecs::encoding::format::Serializer; | ||
use codecs::{NativeJsonDeserializerConfig, NativeJsonSerializerConfig}; | ||
use vector_core::buckets; | ||
use vector_core::config::LogNamespace; | ||
use vector_core::event::{Event, Metric}; | ||
use vector_core::event::{MetricKind, MetricValue}; | ||
|
||
fn assert_roundtrip( | ||
input_event: Event, | ||
serializer: &mut dyn Serializer<Error = vector_common::Error>, | ||
deserializer: &dyn Deserializer, | ||
expected_json_value: serde_json::Value, | ||
) { | ||
let mut bytes_mut = BytesMut::new(); | ||
serializer | ||
.encode(input_event.clone(), &mut bytes_mut) | ||
.unwrap(); | ||
let bytes = bytes_mut.freeze(); | ||
let events = deserializer.parse(bytes, LogNamespace::Vector).unwrap(); | ||
assert_eq!(events.len(), 1); | ||
assert_eq!(events[0], input_event); | ||
|
||
let json_value = serde_json::to_value(input_event.as_metric()).unwrap(); | ||
assert_eq!(json_value, expected_json_value); | ||
} | ||
|
||
#[test] | ||
fn histogram_metric_roundtrip() { | ||
let histogram_event = Event::from(Metric::new( | ||
"histogram", | ||
MetricKind::Absolute, | ||
MetricValue::AggregatedHistogram { | ||
count: 1, | ||
sum: 1.0, | ||
buckets: buckets!( | ||
f64::NEG_INFINITY => 10 , | ||
f64::MIN => 10, 1.5 => 10, | ||
f64::MAX => 10, | ||
f64::INFINITY => 10), | ||
}, | ||
)); | ||
|
||
let expected_json_value = serde_json::from_str( | ||
r#" | ||
{ | ||
"aggregated_histogram": { | ||
"buckets": [ | ||
{ | ||
"count": 10, | ||
"upper_limit": "-inf" | ||
}, | ||
{ | ||
"count": 10, | ||
"upper_limit": -1.7976931348623157e308 | ||
}, | ||
{ | ||
"count": 10, | ||
"upper_limit": 1.5 | ||
}, | ||
{ | ||
"count": 10, | ||
"upper_limit": 1.7976931348623157e308 | ||
}, | ||
{ | ||
"count": 10, | ||
"upper_limit": "inf" | ||
} | ||
], | ||
"count": 1, | ||
"sum": 1.0 | ||
}, | ||
"kind": "absolute", | ||
"name": "histogram" | ||
}"#, | ||
) | ||
.unwrap(); | ||
|
||
assert_roundtrip( | ||
histogram_event, | ||
&mut NativeJsonSerializerConfig.build(), | ||
&NativeJsonDeserializerConfig::default().build(), | ||
expected_json_value, | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters