#[doc(inline)]
pub use ::opentelemetry::*;
#[doc(inline)]
pub use ::opentelemetry_semantic_conventions as semantic_conventions;
#[doc(inline)]
pub use ::opentelemetry_sdk as sdk;
mod attributes;
#[doc(inline)]
pub use attributes::AttributesFactory;
#[derive(Debug, Clone, Default)]
pub struct MeterOptions {
pub service: Option<ServiceInfo>,
pub attributes: Option<Vec<KeyValue>>,
pub metric_prefix: Option<String>,
}
#[derive(Debug, Clone)]
pub struct ServiceInfo {
pub name: String,
pub version: String,
}