otlp2records 0.5.0

Transform OTLP telemetry to flattened records
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
//! otlp2records - Transform OTLP telemetry to Arrow RecordBatches
//!
//! This crate provides synchronous, WASM-compatible transformation of OpenTelemetry
//! Protocol (OTLP) data (logs, traces, metrics) into Arrow RecordBatches.
//!
//! # Design Principles
//!
//! - **No I/O**: Core never touches network or filesystem
//! - **No async**: Pure synchronous transforms
//! - **WASM-first**: All dependencies compile to wasm32
//! - **Arrow-native**: RecordBatch is the canonical output format
//!
//! # High-level API
//!
//! The simplest way to use this crate is with the high-level transform functions:
//!
//! ```ignore
//! use otlp2records::{transform_logs, transform_traces, transform_metrics, InputFormat};
//!
//! // Transform OTLP logs to Arrow RecordBatch
//! let batch = transform_logs(bytes, InputFormat::Protobuf)?;
//!
//! // Transform OTLP traces to Arrow RecordBatch
//! let batch = transform_traces(bytes, InputFormat::Json)?;
//!
//! // Transform OTLP metrics to Arrow RecordBatches (separate gauge and sum)
//! let batches = transform_metrics(bytes, InputFormat::Protobuf)?;
//! if let Some(gauge_batch) = batches.gauge {
//!     // Process gauge metrics
//! }
//! if let Some(sum_batch) = batches.sum {
//!     // Process sum metrics
//! }
//! ```
//!
//! # Lower-level API
//!
//! For more control over individual transformation steps:
//!
//! ```ignore
//! use otlp2records::{decode_logs, apply_log_transform, values_to_arrow, logs_schema, InputFormat};
//!
//! // Step 1: Decode OTLP bytes to record values
//! let values = decode_logs(bytes, InputFormat::Protobuf)?;
//!
//! // Step 2: Apply the built-in transformation
//! let transformed = apply_log_transform(values);
//!
//! // Step 3: Convert to Arrow RecordBatch
//! let batch = values_to_arrow(&transformed, &logs_schema())?;
//! ```

pub mod arrow;
pub mod convert;
pub mod decode;
pub mod error;
pub mod output;
pub mod schemas;
pub mod transform;
pub mod value;

#[cfg(all(feature = "wasm", target_arch = "wasm32"))]
pub mod wasm;

#[cfg(feature = "ffi")]
pub mod ffi;

use ::arrow::record_batch::RecordBatch;

pub use arrow::{
    exp_histogram_schema, extract_min_timestamp_micros, extract_service_name, gauge_schema,
    group_batch_by_service, histogram_schema, logs_schema, sum_schema, traces_schema,
    values_to_arrow, PartitionedBatch, PartitionedMetrics, ServiceGroupedBatches,
};
pub use decode::{
    count_skipped_metric_data_points, decode_logs, decode_metrics, decode_traces,
    normalise_json_value, normalize_json_bytes, DecodeMetricsResult, InputFormat, MetricSkipCounts,
    SkippedMetrics,
};
pub use error::{Error, Result};
#[cfg(feature = "parquet")]
pub use output::to_parquet;
pub use output::{to_ipc, to_json};
pub use schemas::{schema_def, schema_defs, FieldType, SchemaDef, SchemaField};
pub use value::{KeyString, ObjectMap, Value};

// ============================================================================
// High-level API types
// ============================================================================

/// Result of transforming OTLP metrics to Arrow RecordBatches.
///
/// Metrics are separated by type because each metric type has a different schema.
/// Each field is `None` if there were no metrics of that type in the input.
///
/// The `skipped` field provides visibility into what data was not processed,
/// including unsupported metric types (summary) and invalid data points
/// (NaN, Infinity, missing values).
#[derive(Debug)]
pub struct MetricBatches {
    /// RecordBatch containing gauge metrics (if any)
    pub gauge: Option<RecordBatch>,
    /// RecordBatch containing sum metrics (if any)
    pub sum: Option<RecordBatch>,
    /// RecordBatch containing histogram metrics (if any)
    pub histogram: Option<RecordBatch>,
    /// RecordBatch containing exponential histogram metrics (if any)
    pub exp_histogram: Option<RecordBatch>,
    /// Metrics that were skipped during processing
    pub skipped: SkippedMetrics,
}

/// Result of transforming OTLP metrics to JSON values.
#[derive(Debug)]
pub struct JsonMetricBatches {
    /// JSON values for gauge metrics
    pub gauge: Vec<serde_json::Value>,
    /// JSON values for sum metrics
    pub sum: Vec<serde_json::Value>,
    /// JSON values for histogram metrics
    pub histogram: Vec<serde_json::Value>,
    /// JSON values for exponential histogram metrics
    pub exp_histogram: Vec<serde_json::Value>,
    /// Metrics that were skipped during processing
    pub skipped: SkippedMetrics,
}

/// Result of applying the built-in transformation to metrics.
///
/// Metrics are partitioned by type because each metric type has a different
/// output schema.
#[derive(Debug, Default)]
pub struct MetricValues {
    /// Transformed gauge metric values
    pub gauge: Vec<Value>,
    /// Transformed sum metric values
    pub sum: Vec<Value>,
    /// Transformed histogram metric values
    pub histogram: Vec<Value>,
    /// Transformed exponential histogram metric values
    pub exp_histogram: Vec<Value>,
}

// ============================================================================
// High-level API functions
// ============================================================================

/// Transform OTLP logs to Arrow RecordBatch.
///
/// This is the simplest way to convert OTLP log data to Arrow format.
/// It handles decoding, transformation, and Arrow conversion in one step.
///
/// # Arguments
///
/// * `bytes` - Raw OTLP log data bytes
/// * `format` - The input format (Protobuf or JSON)
///
/// # Returns
///
/// An Arrow RecordBatch containing the transformed log data, or an error.
///
/// # Example
///
/// ```ignore
/// use otlp2records::{transform_logs, InputFormat};
///
/// let batch = transform_logs(otlp_bytes, InputFormat::Protobuf)?;
/// println!("Transformed {} log records", batch.num_rows());
/// ```
pub fn transform_logs(bytes: &[u8], format: InputFormat) -> Result<RecordBatch> {
    // Step 1: Decode OTLP logs
    let values = decode_logs(bytes, format)?;

    // Step 2: Apply transformation
    let transformed = apply_log_transform(values);

    // Step 3: Convert to Arrow
    let batch = values_to_arrow(&transformed, &logs_schema())?;

    Ok(batch)
}

/// Transform OTLP logs to JSON values.
pub fn transform_logs_json(bytes: &[u8], format: InputFormat) -> Result<Vec<serde_json::Value>> {
    let values = decode_logs(bytes, format)?;
    let transformed = apply_log_transform(values);
    values_to_json(transformed, "log")
}

/// Transform OTLP traces to Arrow RecordBatch.
///
/// This is the simplest way to convert OTLP trace data to Arrow format.
/// It handles decoding, transformation, and Arrow conversion in one step.
///
/// # Arguments
///
/// * `bytes` - Raw OTLP trace data bytes
/// * `format` - The input format (Protobuf or JSON)
///
/// # Returns
///
/// An Arrow RecordBatch containing the transformed trace data, or an error.
///
/// # Example
///
/// ```ignore
/// use otlp2records::{transform_traces, InputFormat};
///
/// let batch = transform_traces(otlp_bytes, InputFormat::Protobuf)?;
/// println!("Transformed {} spans", batch.num_rows());
/// ```
pub fn transform_traces(bytes: &[u8], format: InputFormat) -> Result<RecordBatch> {
    // Step 1: Decode OTLP traces
    let values = decode_traces(bytes, format)?;

    // Step 2: Apply transformation
    let transformed = apply_trace_transform(values);

    // Step 3: Convert to Arrow
    let batch = values_to_arrow(&transformed, &traces_schema())?;

    Ok(batch)
}

/// Transform OTLP traces to JSON values.
pub fn transform_traces_json(bytes: &[u8], format: InputFormat) -> Result<Vec<serde_json::Value>> {
    let values = decode_traces(bytes, format)?;
    let transformed = apply_trace_transform(values);
    values_to_json(transformed, "span")
}

/// Transform OTLP metrics to Arrow RecordBatches.
///
/// Returns separate batches for gauge and sum metrics because they have
/// different schemas. Each field in the result is `None` if there were
/// no metrics of that type in the input.
///
/// # Arguments
///
/// * `bytes` - Raw OTLP metric data bytes
/// * `format` - The input format (Protobuf or JSON)
///
/// # Returns
///
/// A `MetricBatches` struct containing optional RecordBatches for gauge
/// and sum metrics, or an error.
///
/// # Example
///
/// ```ignore
/// use otlp2records::{transform_metrics, InputFormat};
///
/// let batches = transform_metrics(otlp_bytes, InputFormat::Protobuf)?;
///
/// if let Some(gauge) = batches.gauge {
///     println!("Transformed {} gauge data points", gauge.num_rows());
/// }
/// if let Some(sum) = batches.sum {
///     println!("Transformed {} sum data points", sum.num_rows());
/// }
/// ```
pub fn transform_metrics(bytes: &[u8], format: InputFormat) -> Result<MetricBatches> {
    // Step 1: Decode OTLP metrics
    let decode_result = decode_metrics(bytes, format)?;

    // Step 2: Apply transformation (partitions by metric type)
    let metric_values = apply_metric_transform(decode_result.values);

    // Step 3: Convert each partition to Arrow (if non-empty)
    let gauge = if metric_values.gauge.is_empty() {
        None
    } else {
        Some(values_to_arrow(&metric_values.gauge, &gauge_schema())?)
    };

    let sum = if metric_values.sum.is_empty() {
        None
    } else {
        Some(values_to_arrow(&metric_values.sum, &sum_schema())?)
    };

    let histogram = if metric_values.histogram.is_empty() {
        None
    } else {
        Some(values_to_arrow(
            &metric_values.histogram,
            &histogram_schema(),
        )?)
    };

    let exp_histogram = if metric_values.exp_histogram.is_empty() {
        None
    } else {
        Some(values_to_arrow(
            &metric_values.exp_histogram,
            &exp_histogram_schema(),
        )?)
    };

    Ok(MetricBatches {
        gauge,
        sum,
        histogram,
        exp_histogram,
        skipped: decode_result.skipped,
    })
}

/// Transform OTLP metrics to JSON values.
pub fn transform_metrics_json(bytes: &[u8], format: InputFormat) -> Result<JsonMetricBatches> {
    let decode_result = decode_metrics(bytes, format)?;
    let metric_values = apply_metric_transform(decode_result.values);

    Ok(JsonMetricBatches {
        gauge: values_to_json(metric_values.gauge, "gauge metric")?,
        sum: values_to_json(metric_values.sum, "sum metric")?,
        histogram: values_to_json(metric_values.histogram, "histogram metric")?,
        exp_histogram: values_to_json(metric_values.exp_histogram, "exp_histogram metric")?,
        skipped: decode_result.skipped,
    })
}

// ============================================================================
// Partitioned API functions
// ============================================================================

/// Transform OTLP logs with service-based partitioning.
///
/// This function combines decoding, transformation, and service-based grouping
/// into a single call. Returns batches grouped by service name, ready for
/// partitioned storage.
///
/// # Arguments
///
/// * `bytes` - Raw OTLP log data bytes
/// * `format` - The input format (Protobuf or JSON)
///
/// # Returns
///
/// A `ServiceGroupedBatches` containing RecordBatches grouped by service name,
/// with pre-extracted metadata (service_name, min_timestamp_micros) for each batch.
///
/// # Example
///
/// ```ignore
/// use otlp2records::{transform_logs_partitioned, InputFormat};
///
/// let grouped = transform_logs_partitioned(otlp_bytes, InputFormat::Protobuf)?;
/// for batch in grouped.into_iter() {
///     // batch.service_name, batch.min_timestamp_micros, batch.batch are available
///     println!("Service: {}, records: {}", batch.service_name, batch.record_count);
/// }
/// ```
pub fn transform_logs_partitioned(
    bytes: &[u8],
    format: InputFormat,
) -> Result<ServiceGroupedBatches> {
    let batch = transform_logs(bytes, format)?;
    Ok(group_batch_by_service(batch))
}

/// Transform OTLP traces with service-based partitioning.
///
/// This function combines decoding, transformation, and service-based grouping
/// into a single call. Returns batches grouped by service name, ready for
/// partitioned storage.
///
/// # Arguments
///
/// * `bytes` - Raw OTLP trace data bytes
/// * `format` - The input format (Protobuf or JSON)
///
/// # Returns
///
/// A `ServiceGroupedBatches` containing RecordBatches grouped by service name,
/// with pre-extracted metadata for each batch.
///
/// # Example
///
/// ```ignore
/// use otlp2records::{transform_traces_partitioned, InputFormat};
///
/// let grouped = transform_traces_partitioned(otlp_bytes, InputFormat::Protobuf)?;
/// for batch in grouped.into_iter() {
///     println!("Service: {}, spans: {}", batch.service_name, batch.record_count);
/// }
/// ```
pub fn transform_traces_partitioned(
    bytes: &[u8],
    format: InputFormat,
) -> Result<ServiceGroupedBatches> {
    let batch = transform_traces(bytes, format)?;
    Ok(group_batch_by_service(batch))
}

/// Transform OTLP metrics with service-based partitioning.
///
/// This function combines decoding, transformation, and service-based grouping
/// into a single call. Returns metrics separated by type (gauge, sum) and
/// grouped by service name.
///
/// # Arguments
///
/// * `bytes` - Raw OTLP metric data bytes
/// * `format` - The input format (Protobuf or JSON)
///
/// # Returns
///
/// A `PartitionedMetrics` containing gauge and sum metrics, each grouped by
/// service name with pre-extracted metadata.
///
/// # Example
///
/// ```ignore
/// use otlp2records::{transform_metrics_partitioned, InputFormat};
///
/// let metrics = transform_metrics_partitioned(otlp_bytes, InputFormat::Protobuf)?;
///
/// for batch in metrics.gauge.into_iter() {
///     println!("Gauge service: {}, points: {}", batch.service_name, batch.record_count);
/// }
/// for batch in metrics.sum.into_iter() {
///     println!("Sum service: {}, points: {}", batch.service_name, batch.record_count);
/// }
/// ```
pub fn transform_metrics_partitioned(
    bytes: &[u8],
    format: InputFormat,
) -> Result<PartitionedMetrics> {
    let batches = transform_metrics(bytes, format)?;

    let gauge = match batches.gauge {
        Some(batch) => group_batch_by_service(batch),
        None => ServiceGroupedBatches::default(),
    };

    let sum = match batches.sum {
        Some(batch) => group_batch_by_service(batch),
        None => ServiceGroupedBatches::default(),
    };

    let histogram = match batches.histogram {
        Some(batch) => group_batch_by_service(batch),
        None => ServiceGroupedBatches::default(),
    };

    let exp_histogram = match batches.exp_histogram {
        Some(batch) => group_batch_by_service(batch),
        None => ServiceGroupedBatches::default(),
    };

    Ok(PartitionedMetrics {
        gauge,
        sum,
        histogram,
        exp_histogram,
        skipped: batches.skipped,
    })
}

// ============================================================================
// Lower-level API functions
// ============================================================================

/// Apply the built-in transformation to decoded log values.
///
/// This function provides finer-grained control over the transformation process.
/// Use this when you need to inspect or modify values between steps, or when
/// you want to handle the Arrow conversion separately.
///
/// # Arguments
///
/// * `values` - Decoded OTLP log values (from `decode_logs`)
///
/// # Returns
///
/// A vector of transformed values ready for Arrow conversion.
///
/// # Example
///
/// ```ignore
/// use otlp2records::{decode_logs, apply_log_transform, values_to_arrow, logs_schema, InputFormat};
///
/// let decoded = decode_logs(bytes, InputFormat::Protobuf)?;
/// let transformed = apply_log_transform(decoded);
/// let batch = values_to_arrow(&transformed, &logs_schema())?;
/// ```
pub fn apply_log_transform(values: Vec<Value>) -> Vec<Value> {
    values.into_iter().map(transform::transform_log).collect()
}

/// Apply the built-in transformation to decoded trace values.
///
/// This function provides finer-grained control over the transformation process.
/// Use this when you need to inspect or modify values between steps, or when
/// you want to handle the Arrow conversion separately.
///
/// # Arguments
///
/// * `values` - Decoded OTLP trace values (from `decode_traces`)
///
/// # Returns
///
/// A vector of transformed values ready for Arrow conversion.
///
/// # Example
///
/// ```ignore
/// use otlp2records::{decode_traces, apply_trace_transform, values_to_arrow, traces_schema, InputFormat};
///
/// let decoded = decode_traces(bytes, InputFormat::Protobuf)?;
/// let transformed = apply_trace_transform(decoded);
/// let batch = values_to_arrow(&transformed, &traces_schema())?;
/// ```
pub fn apply_trace_transform(values: Vec<Value>) -> Vec<Value> {
    values.into_iter().map(transform::transform_trace).collect()
}

/// Apply the built-in transformation to decoded metric values.
///
/// This function partitions metrics by type (gauge vs sum) and applies the
/// appropriate transformation to each partition.
///
/// # Arguments
///
/// * `values` - Decoded OTLP metric values (from `decode_metrics`)
///
/// # Returns
///
/// A `MetricValues` struct containing transformed gauge and sum values.
///
/// # Example
///
/// ```ignore
/// use otlp2records::{decode_metrics, apply_metric_transform, values_to_arrow, gauge_schema, sum_schema, InputFormat};
///
/// let decoded = decode_metrics(bytes, InputFormat::Protobuf)?;
/// let transformed = apply_metric_transform(decoded);
///
/// if !transformed.gauge.is_empty() {
///     let batch = values_to_arrow(&transformed.gauge, &gauge_schema())?;
/// }
/// if !transformed.sum.is_empty() {
///     let batch = values_to_arrow(&transformed.sum, &sum_schema())?;
/// }
/// ```
pub fn apply_metric_transform(values: Vec<Value>) -> MetricValues {
    let mut gauge_count = 0;
    let mut sum_count = 0;
    let mut histogram_count = 0;
    let mut exp_histogram_count = 0;
    for value in &values {
        match extract_metric_type(value) {
            "gauge" => gauge_count += 1,
            "sum" => sum_count += 1,
            "histogram" => histogram_count += 1,
            "exp_histogram" => exp_histogram_count += 1,
            _ => {}
        }
    }

    let mut result = MetricValues {
        gauge: Vec::with_capacity(gauge_count),
        sum: Vec::with_capacity(sum_count),
        histogram: Vec::with_capacity(histogram_count),
        exp_histogram: Vec::with_capacity(exp_histogram_count),
    };

    // Partition metrics by type and transform each with the matching transform function.
    for value in values {
        match extract_metric_type(&value) {
            "gauge" => {
                result.gauge.push(transform::transform_gauge(value));
            }
            "sum" => {
                result.sum.push(transform::transform_sum(value));
            }
            "histogram" => {
                result.histogram.push(transform::transform_histogram(value));
            }
            "exp_histogram" => {
                result
                    .exp_histogram
                    .push(transform::transform_exp_histogram(value));
            }
            _ => {
                // Skip unknown metric types (summary - deprecated in OTLP spec)
            }
        }
    }

    result
}

fn values_to_json(values: Vec<Value>, label: &str) -> Result<Vec<serde_json::Value>> {
    let mut out = Vec::with_capacity(values.len());

    for (idx, value) in values.into_iter().enumerate() {
        let json = crate::convert::value_to_json(&value).ok_or_else(|| {
            Error::InvalidInput(format!(
                "{label} record {idx} contains unrepresentable JSON value"
            ))
        })?;
        out.push(json);
    }

    Ok(out)
}

/// Extract the _metric_type field from a decoded metric value.
fn extract_metric_type(value: &Value) -> &'static str {
    if let Value::Object(map) = value {
        if let Some(Value::Bytes(bytes)) = map.get("_metric_type") {
            return match bytes.as_ref() {
                b"gauge" => "gauge",
                b"sum" => "sum",
                b"histogram" => "histogram",
                b"exp_histogram" => "exp_histogram",
                _ => "",
            };
        }
    }
    ""
}

// ============================================================================
// Tests
// ============================================================================

#[cfg(test)]
mod tests {
    use super::*;
    use opentelemetry_proto::tonic::{
        collector::logs::v1::ExportLogsServiceRequest,
        collector::metrics::v1::ExportMetricsServiceRequest,
        collector::trace::v1::ExportTraceServiceRequest,
        common::v1::{any_value, AnyValue, InstrumentationScope, KeyValue},
        logs::v1::{LogRecord, ResourceLogs, ScopeLogs},
        metrics::v1::{
            metric::Data, Gauge, Metric, NumberDataPoint, ResourceMetrics, ScopeMetrics, Sum,
        },
        resource::v1::Resource,
        trace::v1::{ResourceSpans, ScopeSpans, Span},
    };
    use prost::Message;

    // ========================================================================
    // Helper functions for creating test data
    // ========================================================================

    fn create_test_log_request() -> ExportLogsServiceRequest {
        ExportLogsServiceRequest {
            resource_logs: vec![ResourceLogs {
                resource: Some(Resource {
                    attributes: vec![KeyValue {
                        key: "service.name".to_string(),
                        value: Some(AnyValue {
                            value: Some(any_value::Value::StringValue("test-service".to_string())),
                        }),
                    }],
                    ..Default::default()
                }),
                scope_logs: vec![ScopeLogs {
                    scope: Some(InstrumentationScope {
                        name: "test-lib".to_string(),
                        version: "1.0.0".to_string(),
                        ..Default::default()
                    }),
                    log_records: vec![LogRecord {
                        time_unix_nano: 1_700_000_000_000_000_000,
                        observed_time_unix_nano: 1_700_000_000_100_000_000,
                        severity_number: 9,
                        severity_text: "INFO".to_string(),
                        body: Some(AnyValue {
                            value: Some(any_value::Value::StringValue(
                                "Test log message".to_string(),
                            )),
                        }),
                        attributes: vec![KeyValue {
                            key: "log.key".to_string(),
                            value: Some(AnyValue {
                                value: Some(any_value::Value::StringValue("log-value".to_string())),
                            }),
                        }],
                        trace_id: vec![0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
                        span_id: vec![0, 1, 2, 3, 4, 5, 6, 7],
                        ..Default::default()
                    }],
                    ..Default::default()
                }],
                ..Default::default()
            }],
        }
    }

    fn create_test_trace_request() -> ExportTraceServiceRequest {
        ExportTraceServiceRequest {
            resource_spans: vec![ResourceSpans {
                resource: Some(Resource {
                    attributes: vec![KeyValue {
                        key: "service.name".to_string(),
                        value: Some(AnyValue {
                            value: Some(any_value::Value::StringValue("test-service".to_string())),
                        }),
                    }],
                    ..Default::default()
                }),
                scope_spans: vec![ScopeSpans {
                    scope: Some(InstrumentationScope {
                        name: "test-lib".to_string(),
                        version: "1.0.0".to_string(),
                        ..Default::default()
                    }),
                    spans: vec![Span {
                        trace_id: vec![0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
                        span_id: vec![0, 1, 2, 3, 4, 5, 6, 7],
                        parent_span_id: vec![],
                        name: "test-span".to_string(),
                        kind: 1, // INTERNAL
                        start_time_unix_nano: 1_700_000_000_000_000_000,
                        end_time_unix_nano: 1_700_000_000_100_000_000,
                        attributes: vec![KeyValue {
                            key: "span.key".to_string(),
                            value: Some(AnyValue {
                                value: Some(any_value::Value::StringValue(
                                    "span-value".to_string(),
                                )),
                            }),
                        }],
                        ..Default::default()
                    }],
                    ..Default::default()
                }],
                ..Default::default()
            }],
        }
    }

    fn create_test_metrics_request() -> ExportMetricsServiceRequest {
        ExportMetricsServiceRequest {
            resource_metrics: vec![ResourceMetrics {
                resource: Some(Resource {
                    attributes: vec![KeyValue {
                        key: "service.name".to_string(),
                        value: Some(AnyValue {
                            value: Some(any_value::Value::StringValue("test-service".to_string())),
                        }),
                    }],
                    ..Default::default()
                }),
                scope_metrics: vec![ScopeMetrics {
                    scope: Some(InstrumentationScope {
                        name: "test-lib".to_string(),
                        version: "1.0.0".to_string(),
                        ..Default::default()
                    }),
                    metrics: vec![
                        // Gauge metric
                        Metric {
                            name: "test.gauge".to_string(),
                            description: "A test gauge".to_string(),
                            unit: "1".to_string(),
                            data: Some(Data::Gauge(Gauge {
                                data_points: vec![NumberDataPoint {
                                    time_unix_nano: 1_700_000_000_000_000_000,
                                    start_time_unix_nano: 1_699_999_000_000_000_000,
                                    value: Some(
                                        opentelemetry_proto::tonic::metrics::v1::number_data_point::Value::AsDouble(42.5),
                                    ),
                                    attributes: vec![KeyValue {
                                        key: "metric.key".to_string(),
                                        value: Some(AnyValue {
                                            value: Some(any_value::Value::StringValue(
                                                "metric-value".to_string(),
                                            )),
                                        }),
                                    }],
                                    ..Default::default()
                                }],
                            })),
                            ..Default::default()
                        },
                        // Sum metric
                        Metric {
                            name: "test.sum".to_string(),
                            description: "A test sum".to_string(),
                            unit: "bytes".to_string(),
                            data: Some(Data::Sum(Sum {
                                data_points: vec![NumberDataPoint {
                                    time_unix_nano: 1_700_000_000_000_000_000,
                                    start_time_unix_nano: 1_699_999_000_000_000_000,
                                    value: Some(
                                        opentelemetry_proto::tonic::metrics::v1::number_data_point::Value::AsDouble(100.0),
                                    ),
                                    attributes: vec![],
                                    ..Default::default()
                                }],
                                aggregation_temporality: 2, // CUMULATIVE
                                is_monotonic: true,
                            })),
                            ..Default::default()
                        },
                    ],
                    ..Default::default()
                }],
                ..Default::default()
            }],
        }
    }

    fn create_gauge_only_metrics_request() -> ExportMetricsServiceRequest {
        ExportMetricsServiceRequest {
            resource_metrics: vec![ResourceMetrics {
                resource: Some(Resource {
                    attributes: vec![KeyValue {
                        key: "service.name".to_string(),
                        value: Some(AnyValue {
                            value: Some(any_value::Value::StringValue("test-service".to_string())),
                        }),
                    }],
                    ..Default::default()
                }),
                scope_metrics: vec![ScopeMetrics {
                    scope: Some(InstrumentationScope::default()),
                    metrics: vec![Metric {
                        name: "test.gauge".to_string(),
                        data: Some(Data::Gauge(Gauge {
                            data_points: vec![NumberDataPoint {
                                time_unix_nano: 1_700_000_000_000_000_000,
                                value: Some(
                                    opentelemetry_proto::tonic::metrics::v1::number_data_point::Value::AsDouble(1.0),
                                ),
                                ..Default::default()
                            }],
                        })),
                        ..Default::default()
                    }],
                    ..Default::default()
                }],
                ..Default::default()
            }],
        }
    }

    fn create_sum_only_metrics_request() -> ExportMetricsServiceRequest {
        ExportMetricsServiceRequest {
            resource_metrics: vec![ResourceMetrics {
                resource: Some(Resource {
                    attributes: vec![KeyValue {
                        key: "service.name".to_string(),
                        value: Some(AnyValue {
                            value: Some(any_value::Value::StringValue("test-service".to_string())),
                        }),
                    }],
                    ..Default::default()
                }),
                scope_metrics: vec![ScopeMetrics {
                    scope: Some(InstrumentationScope::default()),
                    metrics: vec![Metric {
                        name: "test.sum".to_string(),
                        data: Some(Data::Sum(Sum {
                            data_points: vec![NumberDataPoint {
                                time_unix_nano: 1_700_000_000_000_000_000,
                                value: Some(
                                    opentelemetry_proto::tonic::metrics::v1::number_data_point::Value::AsDouble(2.0),
                                ),
                                ..Default::default()
                            }],
                            aggregation_temporality: 1,
                            is_monotonic: false,
                        })),
                        ..Default::default()
                    }],
                    ..Default::default()
                }],
                ..Default::default()
            }],
        }
    }

    // ========================================================================
    // High-level API tests
    // ========================================================================

    #[test]
    fn test_transform_logs_protobuf() {
        let request = create_test_log_request();
        let bytes = request.encode_to_vec();

        let batch = transform_logs(&bytes, InputFormat::Protobuf).unwrap();

        assert_eq!(batch.num_rows(), 1);
        assert!(batch.num_columns() > 0);

        // Verify some expected columns exist
        let schema = batch.schema();
        assert!(schema.field_with_name("timestamp").is_ok());
        assert!(schema.field_with_name("service_name").is_ok());
        assert!(schema.field_with_name("severity_number").is_ok());
    }

    #[test]
    fn test_transform_logs_json() {
        let json = r#"{
            "resourceLogs": [{
                "resource": { "attributes": [{ "key": "service.name", "value": { "stringValue": "json-svc" } }]},
                "scopeLogs": [{
                    "scope": { "name": "lib", "version": "1" },
                    "logRecords": [{
                        "timeUnixNano": "1700000000000000000",
                        "observedTimeUnixNano": "1700000000100000000",
                        "severityNumber": 9,
                        "severityText": "INFO",
                        "body": { "stringValue": "JSON log" }
                    }]
                }]
            }]
        }"#;

        let batch = transform_logs(json.as_bytes(), InputFormat::Json).unwrap();

        assert_eq!(batch.num_rows(), 1);
    }

    #[test]
    fn test_transform_logs_empty() {
        let request = ExportLogsServiceRequest {
            resource_logs: vec![],
        };
        let bytes = request.encode_to_vec();

        let batch = transform_logs(&bytes, InputFormat::Protobuf).unwrap();

        assert_eq!(batch.num_rows(), 0);
    }

    #[test]
    fn test_transform_traces_protobuf() {
        let request = create_test_trace_request();
        let bytes = request.encode_to_vec();

        let batch = transform_traces(&bytes, InputFormat::Protobuf).unwrap();

        assert_eq!(batch.num_rows(), 1);

        // Verify some expected columns exist
        let schema = batch.schema();
        assert!(schema.field_with_name("timestamp").is_ok());
        assert!(schema.field_with_name("trace_id").is_ok());
        assert!(schema.field_with_name("span_id").is_ok());
        assert!(schema.field_with_name("span_name").is_ok());
    }

    #[test]
    fn test_transform_traces_json() {
        let json = r#"{
            "resourceSpans": [{
                "resource": { "attributes": [{ "key": "service.name", "value": { "stringValue": "json-svc" } }]},
                "scopeSpans": [{
                    "scope": { "name": "lib" },
                    "spans": [{
                        "traceId": "00010203040506070809101112131415",
                        "spanId": "0001020304050607",
                        "name": "json-span",
                        "kind": 1,
                        "startTimeUnixNano": "1700000000000000000",
                        "endTimeUnixNano": "1700000000100000000"
                    }]
                }]
            }]
        }"#;

        let batch = transform_traces(json.as_bytes(), InputFormat::Json).unwrap();

        assert_eq!(batch.num_rows(), 1);
    }

    #[test]
    fn test_transform_traces_empty() {
        let request = ExportTraceServiceRequest {
            resource_spans: vec![],
        };
        let bytes = request.encode_to_vec();

        let batch = transform_traces(&bytes, InputFormat::Protobuf).unwrap();

        assert_eq!(batch.num_rows(), 0);
    }

    #[test]
    fn test_transform_metrics_protobuf() {
        let request = create_test_metrics_request();
        let bytes = request.encode_to_vec();

        let batches = transform_metrics(&bytes, InputFormat::Protobuf).unwrap();

        // Should have both gauge and sum
        assert!(batches.gauge.is_some());
        assert!(batches.sum.is_some());

        let gauge = batches.gauge.unwrap();
        let sum = batches.sum.unwrap();

        assert_eq!(gauge.num_rows(), 1);
        assert_eq!(sum.num_rows(), 1);

        // Verify gauge schema
        let gauge_schema = gauge.schema();
        assert!(gauge_schema.field_with_name("metric_name").is_ok());
        assert!(gauge_schema.field_with_name("value").is_ok());

        // Verify sum schema has extra fields
        let sum_schema = sum.schema();
        assert!(sum_schema
            .field_with_name("aggregation_temporality")
            .is_ok());
        assert!(sum_schema.field_with_name("is_monotonic").is_ok());
    }

    #[test]
    fn test_transform_metrics_gauge_only() {
        let request = create_gauge_only_metrics_request();
        let bytes = request.encode_to_vec();

        let batches = transform_metrics(&bytes, InputFormat::Protobuf).unwrap();

        assert!(batches.gauge.is_some());
        assert!(batches.sum.is_none());
    }

    #[test]
    fn test_transform_metrics_sum_only() {
        let request = create_sum_only_metrics_request();
        let bytes = request.encode_to_vec();

        let batches = transform_metrics(&bytes, InputFormat::Protobuf).unwrap();

        assert!(batches.gauge.is_none());
        assert!(batches.sum.is_some());
    }

    #[test]
    fn test_transform_metrics_empty() {
        let request = ExportMetricsServiceRequest {
            resource_metrics: vec![],
        };
        let bytes = request.encode_to_vec();

        let batches = transform_metrics(&bytes, InputFormat::Protobuf).unwrap();

        assert!(batches.gauge.is_none());
        assert!(batches.sum.is_none());
    }

    // ========================================================================
    // Lower-level API tests
    // ========================================================================

    #[test]
    fn test_apply_log_transform() {
        let request = create_test_log_request();
        let bytes = request.encode_to_vec();
        let decoded = decode_logs(&bytes, InputFormat::Protobuf).unwrap();

        let transformed = apply_log_transform(decoded);

        assert_eq!(transformed.len(), 1);

        // Verify transformation was applied (should have output schema fields)
        if let Value::Object(map) = &transformed[0] {
            let ts_key: KeyString = "timestamp".into();
            let svc_key: KeyString = "service_name".into();
            assert!(map.get(&ts_key).is_some());
            assert!(map.get(&svc_key).is_some());
        } else {
            panic!("Expected object value");
        }
    }

    #[test]
    fn test_apply_trace_transform() {
        let request = create_test_trace_request();
        let bytes = request.encode_to_vec();
        let decoded = decode_traces(&bytes, InputFormat::Protobuf).unwrap();

        let transformed = apply_trace_transform(decoded);

        assert_eq!(transformed.len(), 1);

        // Verify transformation was applied
        if let Value::Object(map) = &transformed[0] {
            let ts_key: KeyString = "timestamp".into();
            let span_key: KeyString = "span_name".into();
            assert!(map.get(&ts_key).is_some());
            assert!(map.get(&span_key).is_some());
        } else {
            panic!("Expected object value");
        }
    }

    #[test]
    fn test_apply_metric_transform() {
        let request = create_test_metrics_request();
        let bytes = request.encode_to_vec();
        let decode_result = decode_metrics(&bytes, InputFormat::Protobuf).unwrap();

        let transformed = apply_metric_transform(decode_result.values);

        assert_eq!(transformed.gauge.len(), 1);
        assert_eq!(transformed.sum.len(), 1);
    }

    #[test]
    fn test_apply_log_transform_empty() {
        let transformed = apply_log_transform(vec![]);
        assert!(transformed.is_empty());
    }

    #[test]
    fn test_apply_trace_transform_empty() {
        let transformed = apply_trace_transform(vec![]);
        assert!(transformed.is_empty());
    }

    #[test]
    fn test_apply_metric_transform_empty() {
        let transformed = apply_metric_transform(vec![]);
        assert!(transformed.gauge.is_empty());
        assert!(transformed.sum.is_empty());
    }

    // ========================================================================
    // Error handling tests
    // ========================================================================

    #[test]
    fn test_transform_logs_invalid_protobuf() {
        let result = transform_logs(b"not valid protobuf", InputFormat::Protobuf);
        assert!(result.is_err());
    }

    #[test]
    fn test_transform_logs_invalid_json() {
        let result = transform_logs(b"not valid json", InputFormat::Json);
        assert!(result.is_err());
    }

    #[test]
    fn test_transform_traces_invalid_protobuf() {
        let result = transform_traces(b"not valid protobuf", InputFormat::Protobuf);
        assert!(result.is_err());
    }

    #[test]
    fn test_transform_metrics_invalid_protobuf() {
        let result = transform_metrics(b"not valid protobuf", InputFormat::Protobuf);
        assert!(result.is_err());
    }

    // ========================================================================
    // Struct tests
    // ========================================================================

    #[test]
    fn test_metric_batches_debug() {
        let batches = MetricBatches {
            gauge: None,
            sum: None,
            histogram: None,
            exp_histogram: None,
            skipped: SkippedMetrics::default(),
        };
        let debug_str = format!("{batches:?}");
        assert!(debug_str.contains("MetricBatches"));
    }

    #[test]
    fn test_metric_values_default() {
        let values = MetricValues::default();
        assert!(values.gauge.is_empty());
        assert!(values.sum.is_empty());
        assert!(values.histogram.is_empty());
        assert!(values.exp_histogram.is_empty());
    }

    #[test]
    fn test_metric_values_debug() {
        let values = MetricValues::default();
        let debug_str = format!("{values:?}");
        assert!(debug_str.contains("MetricValues"));
    }

    // ========================================================================
    // Integration tests
    // ========================================================================

    #[test]
    fn test_full_pipeline_logs_to_json_output() {
        let request = create_test_log_request();
        let bytes = request.encode_to_vec();

        let batch = transform_logs(&bytes, InputFormat::Protobuf).unwrap();
        let json_output = to_json(&batch).unwrap();

        // Should be valid NDJSON
        assert!(!json_output.is_empty());
        // Should contain at least one newline or be non-empty
        let json_str = String::from_utf8(json_output).unwrap();
        assert!(json_str.contains('\n') || !json_str.is_empty());
    }

    #[test]
    fn test_full_pipeline_traces_to_ipc_output() {
        let request = create_test_trace_request();
        let bytes = request.encode_to_vec();

        let batch = transform_traces(&bytes, InputFormat::Protobuf).unwrap();
        let ipc_output = to_ipc(&batch).unwrap();

        // Should produce some bytes
        assert!(!ipc_output.is_empty());
    }

    #[test]
    fn test_full_pipeline_metrics_round_trip() {
        let request = create_test_metrics_request();
        let bytes = request.encode_to_vec();

        // Transform
        let batches = transform_metrics(&bytes, InputFormat::Protobuf).unwrap();

        // Verify we can serialize both
        if let Some(gauge) = &batches.gauge {
            let json = to_json(gauge).unwrap();
            assert!(!json.is_empty());
        }

        if let Some(sum) = &batches.sum {
            let json = to_json(sum).unwrap();
            assert!(!json.is_empty());
        }
    }

    // ========================================================================
    // Timestamp validation tests - ensure timestamps are not 1970 dates
    // ========================================================================

    #[test]
    fn test_timestamp_not_epoch_traces() {
        // Use a known timestamp: 1703265600000000000 ns = Dec 22, 2023 @ 00:00:00 UTC
        let request = ExportTraceServiceRequest {
            resource_spans: vec![ResourceSpans {
                resource: Some(Resource {
                    attributes: vec![KeyValue {
                        key: "service.name".to_string(),
                        value: Some(AnyValue {
                            value: Some(any_value::Value::StringValue("test-service".to_string())),
                        }),
                    }],
                    ..Default::default()
                }),
                scope_spans: vec![ScopeSpans {
                    scope: Some(InstrumentationScope::default()),
                    spans: vec![Span {
                        trace_id: vec![0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
                        span_id: vec![0, 1, 2, 3, 4, 5, 6, 7],
                        name: "test-span".to_string(),
                        start_time_unix_nano: 1_703_265_600_000_000_000, // Dec 22, 2023
                        end_time_unix_nano: 1_703_265_600_100_000_000,
                        ..Default::default()
                    }],
                    ..Default::default()
                }],
                ..Default::default()
            }],
        };
        let bytes = request.encode_to_vec();

        let batch = transform_traces(&bytes, InputFormat::Protobuf).unwrap();
        assert_eq!(batch.num_rows(), 1);

        // Get the timestamp column and verify it's not 0 (epoch)
        let schema = batch.schema();
        let ts_idx = schema.index_of("timestamp").unwrap();
        let ts_column = batch
            .column(ts_idx)
            .as_any()
            .downcast_ref::<::arrow::array::TimestampMicrosecondArray>()
            .expect("timestamp should be TimestampMicrosecondArray");

        let ts_value = ts_column.value(0);
        // Expected: 1703265600000000000 ns / 1000 = 1703265600000000 microseconds
        let expected_micros: i64 = 1_703_265_600_000_000;

        assert_eq!(
            ts_value, expected_micros,
            "Timestamp should be Dec 22, 2023, not epoch (1970)"
        );
        // Sanity check: value should be much greater than 0 (year 2023 >> year 1970)
        assert!(
            ts_value > 1_600_000_000_000_000,
            "Timestamp {ts_value} appears to be too small, possibly 1970 date"
        );
    }

    #[test]
    fn test_timestamp_not_epoch_logs() {
        // Use a known timestamp: 1703265600000000000 ns = Dec 22, 2023 @ 00:00:00 UTC
        let request = ExportLogsServiceRequest {
            resource_logs: vec![ResourceLogs {
                resource: Some(Resource {
                    attributes: vec![KeyValue {
                        key: "service.name".to_string(),
                        value: Some(AnyValue {
                            value: Some(any_value::Value::StringValue("test-service".to_string())),
                        }),
                    }],
                    ..Default::default()
                }),
                scope_logs: vec![ScopeLogs {
                    scope: Some(InstrumentationScope::default()),
                    log_records: vec![LogRecord {
                        time_unix_nano: 1_703_265_600_000_000_000, // Dec 22, 2023
                        observed_time_unix_nano: 1_703_265_600_100_000_000,
                        severity_number: 9,
                        severity_text: "INFO".to_string(),
                        body: Some(AnyValue {
                            value: Some(any_value::Value::StringValue("Test log".to_string())),
                        }),
                        ..Default::default()
                    }],
                    ..Default::default()
                }],
                ..Default::default()
            }],
        };
        let bytes = request.encode_to_vec();

        let batch = transform_logs(&bytes, InputFormat::Protobuf).unwrap();
        assert_eq!(batch.num_rows(), 1);

        // Get the timestamp column and verify it's not 0 (epoch)
        let schema = batch.schema();
        let ts_idx = schema.index_of("timestamp").unwrap();
        let ts_column = batch
            .column(ts_idx)
            .as_any()
            .downcast_ref::<::arrow::array::TimestampMicrosecondArray>()
            .expect("timestamp should be TimestampMicrosecondArray");

        let ts_value = ts_column.value(0);
        // Expected: 1703265600000000000 ns / 1000 = 1703265600000000 microseconds
        let expected_micros: i64 = 1_703_265_600_000_000;

        assert_eq!(
            ts_value, expected_micros,
            "Timestamp should be Dec 22, 2023, not epoch (1970)"
        );
        // Sanity check: value should be much greater than 0 (year 2023 >> year 1970)
        assert!(
            ts_value > 1_600_000_000_000_000,
            "Timestamp {ts_value} appears to be too small, possibly 1970 date"
        );
    }

    #[test]
    fn test_timestamp_not_epoch_metrics() {
        // Use a known timestamp: 1703265600000000000 ns = Dec 22, 2023 @ 00:00:00 UTC
        let request = ExportMetricsServiceRequest {
            resource_metrics: vec![ResourceMetrics {
                resource: Some(Resource {
                    attributes: vec![KeyValue {
                        key: "service.name".to_string(),
                        value: Some(AnyValue {
                            value: Some(any_value::Value::StringValue("test-service".to_string())),
                        }),
                    }],
                    ..Default::default()
                }),
                scope_metrics: vec![ScopeMetrics {
                    scope: Some(InstrumentationScope::default()),
                    metrics: vec![Metric {
                        name: "test.gauge".to_string(),
                        data: Some(Data::Gauge(Gauge {
                            data_points: vec![NumberDataPoint {
                                time_unix_nano: 1_703_265_600_000_000_000, // Dec 22, 2023
                                value: Some(
                                    opentelemetry_proto::tonic::metrics::v1::number_data_point::Value::AsDouble(42.0),
                                ),
                                ..Default::default()
                            }],
                        })),
                        ..Default::default()
                    }],
                    ..Default::default()
                }],
                ..Default::default()
            }],
        };
        let bytes = request.encode_to_vec();

        let batches = transform_metrics(&bytes, InputFormat::Protobuf).unwrap();
        let gauge = batches.gauge.expect("should have gauge metrics");
        assert_eq!(gauge.num_rows(), 1);

        // Get the timestamp column and verify it's not 0 (epoch)
        let schema = gauge.schema();
        let ts_idx = schema.index_of("timestamp").unwrap();
        let ts_column = gauge
            .column(ts_idx)
            .as_any()
            .downcast_ref::<::arrow::array::TimestampMicrosecondArray>()
            .expect("timestamp should be TimestampMicrosecondArray");

        let ts_value = ts_column.value(0);
        // Expected: 1703265600000000000 ns / 1000 = 1703265600000000 microseconds
        let expected_micros: i64 = 1_703_265_600_000_000;

        assert_eq!(
            ts_value, expected_micros,
            "Timestamp should be Dec 22, 2023, not epoch (1970)"
        );
        // Sanity check: value should be much greater than 0 (year 2023 >> year 1970)
        assert!(
            ts_value > 1_600_000_000_000_000,
            "Timestamp {ts_value} appears to be too small, possibly 1970 date"
        );
    }
}