-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathotel_push_exporter.rs
168 lines (152 loc) · 6.09 KB
/
otel_push_exporter.rs
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
use opentelemetry::metrics::MetricsError;
use opentelemetry_otlp::{ExportConfig, Protocol, WithExportConfig};
use opentelemetry_otlp::{OtlpMetricPipeline, OTEL_EXPORTER_OTLP_TIMEOUT_DEFAULT};
use opentelemetry_sdk::metrics::SdkMeterProvider;
use std::ops::Deref;
use std::time::Duration;
/// Newtype struct holding a [`SdkMeterProvider`] with a custom `Drop` implementation to automatically clean up itself
#[repr(transparent)]
#[must_use = "Assign this to a unused variable instead: `let _meter = ...` (NOT `let _ = ...`), as else it will be dropped immediately - which will cause it to be shut down"]
pub struct OtelMeterProvider(SdkMeterProvider);
impl Deref for OtelMeterProvider {
type Target = SdkMeterProvider;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl Drop for OtelMeterProvider {
fn drop(&mut self) {
// this will only error if `.shutdown` gets called multiple times
let _ = self.0.shutdown();
}
}
/// Initialize the OpenTelemetry push exporter using HTTP transport.
///
/// # Interval and timeout
/// This function uses the environment variables `OTEL_METRIC_EXPORT_TIMEOUT` and `OTEL_METRIC_EXPORT_INTERVAL`
/// to configure the timeout and interval respectively. If you want to customize those
/// from within code, consider using [`init_http_with_timeout_period`].
#[cfg(feature = "otel-push-exporter-http")]
pub fn init_http(url: impl Into<String>) -> Result<OtelMeterProvider, MetricsError> {
let (timeout, period) = timeout_and_period_from_env_or_default();
init_http_with_timeout_period(url, timeout, period)
}
/// Initialize the OpenTelemetry push exporter using HTTP transport with customized `timeout` and `period`.
#[cfg(feature = "otel-push-exporter-http")]
pub fn init_http_with_timeout_period(
url: impl Into<String>,
timeout: Duration,
period: Duration,
) -> Result<OtelMeterProvider, MetricsError> {
runtime()
.with_exporter(
opentelemetry_otlp::new_exporter()
.http()
.with_export_config(ExportConfig {
endpoint: url.into(),
protocol: Protocol::HttpBinary,
timeout,
..Default::default()
}),
)
.with_period(period)
.build()
.map(OtelMeterProvider)
}
/// Initialize the OpenTelemetry push exporter using gRPC transport.
///
/// # Interval and timeout
/// This function uses the environment variables `OTEL_METRIC_EXPORT_TIMEOUT` and `OTEL_METRIC_EXPORT_INTERVAL`
/// to configure the timeout and interval respectively. If you want to customize those
/// from within code, consider using [`init_grpc_with_timeout_period`].
#[cfg(feature = "otel-push-exporter-grpc")]
pub fn init_grpc(url: impl Into<String>) -> Result<OtelMeterProvider, MetricsError> {
let (timeout, period) = timeout_and_period_from_env_or_default();
init_grpc_with_timeout_period(url, timeout, period)
}
/// Initialize the OpenTelemetry push exporter using gRPC transport with customized `timeout` and `period`.
#[cfg(feature = "otel-push-exporter-grpc")]
pub fn init_grpc_with_timeout_period(
url: impl Into<String>,
timeout: Duration,
period: Duration,
) -> Result<OtelMeterProvider, MetricsError> {
runtime()
.with_exporter(
opentelemetry_otlp::new_exporter()
.tonic()
.with_export_config(ExportConfig {
endpoint: url.into(),
protocol: Protocol::Grpc,
timeout,
..Default::default()
}),
)
.with_period(period)
.build()
.map(OtelMeterProvider)
}
/// returns timeout and period from their respective environment variables
/// or the default, if they are not set or set to an invalid value
fn timeout_and_period_from_env_or_default() -> (Duration, Duration) {
const OTEL_EXPORTER_TIMEOUT_ENV: &str = "OTEL_METRIC_EXPORT_TIMEOUT";
const OTEL_EXPORTER_INTERVAL_ENV: &str = "OTEL_METRIC_EXPORT_INTERVAL";
let timeout = Duration::from_secs(
std::env::var_os(OTEL_EXPORTER_TIMEOUT_ENV)
.and_then(|os_string| os_string.into_string().ok())
.and_then(|str| str.parse().ok())
.unwrap_or(OTEL_EXPORTER_OTLP_TIMEOUT_DEFAULT),
);
let period = Duration::from_secs(
std::env::var_os(OTEL_EXPORTER_INTERVAL_ENV)
.and_then(|os_string| os_string.into_string().ok())
.and_then(|str| str.parse().ok())
.unwrap_or(60),
);
(timeout, period)
}
#[cfg(all(
feature = "otel-push-exporter-tokio",
not(any(
feature = "otel-push-exporter-tokio-current-thread",
feature = "otel-push-exporter-async-std"
))
))]
fn runtime(
) -> OtlpMetricPipeline<opentelemetry_sdk::runtime::Tokio, opentelemetry_otlp::NoExporterConfig> {
return opentelemetry_otlp::new_pipeline().metrics(opentelemetry_sdk::runtime::Tokio);
}
#[cfg(all(
feature = "otel-push-exporter-tokio-current-thread",
not(any(
feature = "otel-push-exporter-tokio",
feature = "otel-push-exporter-async-std"
))
))]
fn runtime() -> OtlpMetricPipeline<
opentelemetry_sdk::runtime::TokioCurrentThread,
opentelemetry_otlp::NoExporterConfig,
> {
return opentelemetry_otlp::new_pipeline()
.metrics(opentelemetry_sdk::runtime::TokioCurrentThread);
}
#[cfg(all(
feature = "otel-push-exporter-async-std",
not(any(
feature = "otel-push-exporter-tokio",
feature = "otel-push-exporter-tokio-current-thread"
))
))]
fn runtime(
) -> OtlpMetricPipeline<opentelemetry_sdk::runtime::AsyncStd, opentelemetry_otlp::NoExporterConfig>
{
return opentelemetry_otlp::new_pipeline().metrics(opentelemetry_sdk::runtime::AsyncStd);
}
#[cfg(not(any(
feature = "otel-push-exporter-tokio",
feature = "otel-push-exporter-tokio-current-thread",
feature = "otel-push-exporter-async-std"
)))]
fn runtime() -> ! {
compile_error!("select your runtime (`otel-push-exporter-tokio`, `otel-push-exporter-tokio-current-thread` or `otel-push-exporter-async-std`) for the autometrics push exporter or use the custom push exporter if none fit")
}