Skip to content

Commit

Permalink
Reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbodd committed Dec 4, 2024
1 parent 7b18b01 commit d167101
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions opentelemetry-etw-metrics/src/exporter/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use opentelemetry::otel_warn;
use crate::etw;

use opentelemetry::otel_warn;
use opentelemetry_proto::tonic::{
collector::metrics::v1::ExportMetricsServiceRequest,
metrics::v1::{
Expand All @@ -12,13 +13,11 @@ use opentelemetry_proto::tonic::{
use opentelemetry_sdk::metrics::{
data::ResourceMetrics, exporter::PushMetricExporter, MetricError, MetricResult, Temporality,
};
use prost::Message;

use async_trait::async_trait;

use std::fmt::{Debug, Formatter};

use crate::etw;
use async_trait::async_trait;
use prost::Message;

pub struct MetricsExporter {}

Expand Down

0 comments on commit d167101

Please sign in to comment.