mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-04-27 04:15:39 +00:00
30 lines
893 B
Rust
30 lines
893 B
Rust
// Copyright 2024, 2025 New Vector Ltd.
|
|
// Copyright 2022-2024 The Matrix.org Foundation C.I.C.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
|
|
//! Utilities to do HTTP requests
|
|
|
|
#![deny(rustdoc::missing_crate_level_docs)]
|
|
#![allow(clippy::module_name_repetitions)]
|
|
|
|
use std::sync::LazyLock;
|
|
|
|
mod ext;
|
|
mod reqwest;
|
|
|
|
pub use self::{
|
|
ext::{CorsLayerExt, set_propagator},
|
|
reqwest::{RequestBuilderExt, client as reqwest_client},
|
|
};
|
|
|
|
static METER: LazyLock<opentelemetry::metrics::Meter> = LazyLock::new(|| {
|
|
let scope = opentelemetry::InstrumentationScope::builder(env!("CARGO_PKG_NAME"))
|
|
.with_version(env!("CARGO_PKG_VERSION"))
|
|
.with_schema_url(opentelemetry_semantic_conventions::SCHEMA_URL)
|
|
.build();
|
|
|
|
opentelemetry::global::meter_with_scope(scope)
|
|
});
|