athena_rs 3.6.1

Hyper performant polyglot Database driver
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
//! Grafana Loki shipping layer (optional, gated on the `loki` cargo feature).
//!
//! # Purpose
//!
//! Wires every `tracing` event emitted by Athena — including structured fields
//! added with `tracing::info!(field = %value, …)` — into a background HTTP
//! pipeline that batches them to a Loki endpoint. When enabled, the exact same
//! events that hit stdout, the rolling log files, and Sentry are also pushed
//! to Loki, so operators can run LogQL queries without introducing a second
//! log-collection sidecar.
//!
//! The data plane (this module's [`LokiConfig`] struct + [`LokiConfig::resolve`])
//! is always compiled so the binary has the same surface regardless of feature
//! flags; only [`LokiConfig::build_layer`] and the upstream
//! [`tracing_loki`](https://docs.rs/tracing-loki) dep are gated by
//! `#[cfg(feature = "loki")]`. This keeps `main.rs`'s wiring uniform.
//!
//! # Configuration precedence
//!
//! Resolution is env-first, YAML-second to match the rest of the observability
//! stack (Sentry reads `SENTRY_DSN` etc. the same way):
//!
//! | Priority | Source |
//! | --- | --- |
//! | 1 (wins) | Environment variable `ATHENA_LOKI_*` |
//! | 2 | `loki:` section in `config.yaml` (with `${VAR}` interpolation) |
//! | 3 | Disabled (no Loki layer attached) |
//!
//! # Environment variables
//!
//! | Variable | Purpose | Example |
//! | --- | --- | --- |
//! | `ATHENA_LOKI_URL` | Full push endpoint (incl. scheme + port). Enabling this alone is enough to activate the layer. | `http://loki.internal:3100` |
//! | `ATHENA_LOKI_TENANT_ID` | Sent as `X-Scope-OrgID` for multi-tenant Loki. | `athena-prod` |
//! | `ATHENA_LOKI_USERNAME` / `ATHENA_LOKI_PASSWORD` | HTTP Basic auth credentials. Both must be set. | |
//! | `ATHENA_LOKI_LABELS` | Comma-separated `key=value` pairs attached to every stream. | `env=prod,service=athena,region=eu-1` |
//! | `ATHENA_LOKI_EXTRA_FIELDS` | Comma-separated `key=value` pairs attached to every *event* (not the stream). | `host=${HOSTNAME}` |
//!
//! # YAML example
//!
//! ```yaml
//! loki:
//!   - url: "${ATHENA_LOKI_URL}"
//!   - tenant_id: "${ATHENA_LOKI_TENANT_ID}"
//!   - labels: "env=prod,service=athena"
//!   - extra_fields: "version=3.5.0"
//! ```
//!
//! # Lifetime
//!
//! `tracing-loki` needs a tokio runtime for its batching task. Because
//! Athena's `main` is `#[actix_web::main]` (a tokio runtime), the task is
//! spawned inside `init_tracing`. The task lives for the whole process; there
//! is no graceful-shutdown flush — operators should rely on Loki's
//! `batch_size`/`batch_interval` defaults (and the fact that we also write to
//! stdout + files) to bound log loss on crash.

use std::collections::BTreeMap;
use std::env;

use crate::config::Config;
use crate::parser::parse_env_reference;

#[cfg(feature = "loki")]
type LokiFilteredLayer = tracing_subscriber::filter::Filtered<
    tracing_loki::Layer,
    tracing_subscriber::EnvFilter,
    tracing_subscriber::Registry,
>;

#[cfg(feature = "loki")]
type ReloadSlot = Option<LokiFilteredLayer>;

#[cfg(feature = "loki")]
type ReloadHandle = tracing_subscriber::reload::Handle<ReloadSlot, tracing_subscriber::Registry>;

#[cfg(feature = "loki")]
static RELOAD_HANDLE: std::sync::OnceLock<ReloadHandle> = std::sync::OnceLock::new();

/// Build a placeholder layer to install **at subscriber-init time**, before
/// [`Config`] is loaded.
///
/// When the `loki` cargo feature is on, this returns a
/// [`tracing_subscriber::reload::Layer`] that starts as a no-op and can be
/// populated later via [`attach_loki_layer`]. When the feature is off this
/// returns the unit type `()`, which `tracing-subscriber` also treats as a
/// no-op [`Layer`](tracing_subscriber::Layer) — so the wiring inside
/// `init_tracing` stays uniform across feature flags.
///
/// Call this exactly once per process — inside `init_tracing` — and hand the
/// returned value straight into `.with(...)` on the registry.
#[cfg(feature = "loki")]
pub fn reservation_layer()
-> impl tracing_subscriber::Layer<tracing_subscriber::Registry> + Send + Sync + 'static {
    let (layer, handle) =
        tracing_subscriber::reload::Layer::<ReloadSlot, tracing_subscriber::Registry>::new(None);
    let _ = RELOAD_HANDLE.set(handle);
    layer
}

#[cfg(not(feature = "loki"))]
pub fn reservation_layer()
-> impl tracing_subscriber::Layer<tracing_subscriber::Registry> + Send + Sync + 'static {
    // `Option<L>` where `L: Layer<S>` is a no-op when `None`. We use
    // `EnvFilter` purely for its `Layer` impl here; the value is never built.
    None::<tracing_subscriber::EnvFilter>
}

/// Attach the Loki shipping layer **after config has been loaded**.
///
/// Returns:
/// - `Ok(true)` when a live Loki layer was swapped into the reservation slot
///   and its background batching task was spawned on the current tokio
///   runtime.
/// - `Ok(false)` when `cfg.is_enabled()` is false — nothing to do.
/// - `Err(_)` if the reservation slot is missing, the layer could not be
///   built, or the reload call failed.
///
/// With the `loki` feature off, always returns `Ok(false)` so callers never
/// need to cfg-guard their call sites.
#[cfg(feature = "loki")]
pub fn attach_loki_layer(cfg: &LokiConfig) -> Result<bool, LokiLayerError> {
    use tracing_subscriber::Layer as _;

    if !cfg.is_enabled() {
        return Ok(false);
    }

    let handle = RELOAD_HANDLE.get().ok_or(LokiLayerError::NotInstalled)?;
    let (layer, task) = build_layer(cfg)?;

    let filter = tracing_subscriber::EnvFilter::try_from_env("ATHENA_LOKI_FILTER")
        .or_else(|_| tracing_subscriber::EnvFilter::try_from_default_env())
        .unwrap_or_else(|_| tracing_subscriber::EnvFilter::new("info"));

    let filtered: LokiFilteredLayer = layer.with_filter(filter);
    handle
        .modify(move |slot| {
            *slot = Some(filtered);
        })
        .map_err(|err| LokiLayerError::Reload(err.to_string()))?;
    tokio::spawn(task);
    Ok(true)
}

#[cfg(not(feature = "loki"))]
pub fn attach_loki_layer(_cfg: &LokiConfig) -> Result<bool, LokiLayerError> {
    Ok(false)
}

/// Resolved Loki-shipping configuration.
///
/// Produced by [`LokiConfig::resolve`] from env + YAML. Always present in the
/// binary; [`is_enabled`](Self::is_enabled) is how callers decide whether to
/// attach the layer.
#[derive(Debug, Clone, Default)]
pub struct LokiConfig {
    /// Loki push endpoint (e.g. `http://loki:3100`). When `None`, the layer
    /// is disabled regardless of any other field.
    pub url: Option<String>,
    /// Tenant identifier sent as the `X-Scope-OrgID` header.
    pub tenant_id: Option<String>,
    /// HTTP Basic auth username. Must be set together with [`Self::password`].
    pub username: Option<String>,
    /// HTTP Basic auth password. Must be set together with [`Self::username`].
    pub password: Option<String>,
    /// Stream labels — applied to **every** log line shipped to Loki.
    ///
    /// Keep cardinality low: a common mistake is putting request IDs here.
    /// Put those in [`Self::extra_fields`] instead.
    pub labels: BTreeMap<String, String>,
    /// Per-event structured fields attached to every log line.
    pub extra_fields: BTreeMap<String, String>,
}

impl LokiConfig {
    /// Resolve the effective Loki configuration from env + YAML.
    ///
    /// Environment variables take precedence over YAML; YAML values that look
    /// like `${VAR}` are env-interpolated the same way
    /// [`crate::parser::resolve_postgres_uri`] does for URIs.
    pub fn resolve(config: &Config) -> Self {
        let mut out = Self::from_config(config);

        if let Some(url) = env_string("ATHENA_LOKI_URL") {
            out.url = Some(url);
        }
        if let Some(tenant) = env_string("ATHENA_LOKI_TENANT_ID") {
            out.tenant_id = Some(tenant);
        }
        if let Some(user) = env_string("ATHENA_LOKI_USERNAME") {
            out.username = Some(user);
        }
        if let Some(password) = env_string("ATHENA_LOKI_PASSWORD") {
            out.password = Some(password);
        }
        if let Some(raw) = env_string("ATHENA_LOKI_LABELS") {
            for (k, v) in parse_kv_list(&raw) {
                out.labels.insert(k, v);
            }
        }
        if let Some(raw) = env_string("ATHENA_LOKI_EXTRA_FIELDS") {
            for (k, v) in parse_kv_list(&raw) {
                out.extra_fields.insert(k, v);
            }
        }

        out
    }

    /// Parse the `loki:` YAML section only (env vars not consulted). Mostly
    /// useful for tests; production code paths should call [`Self::resolve`].
    pub fn from_config(config: &Config) -> Self {
        let mut out = Self::default();

        if let Some(url) = lookup(config, "url").and_then(|v| interpolate_env(v)) {
            out.url = Some(url);
        }
        if let Some(tenant) = lookup(config, "tenant_id").and_then(|v| interpolate_env(v)) {
            out.tenant_id = Some(tenant);
        }
        if let Some(user) = lookup(config, "username").and_then(|v| interpolate_env(v)) {
            out.username = Some(user);
        }
        if let Some(password) = lookup(config, "password").and_then(|v| interpolate_env(v)) {
            out.password = Some(password);
        }
        if let Some(labels) = lookup(config, "labels").and_then(|v| interpolate_env(v)) {
            for (k, v) in parse_kv_list(&labels) {
                out.labels.insert(k, v);
            }
        }
        if let Some(fields) = lookup(config, "extra_fields").and_then(|v| interpolate_env(v)) {
            for (k, v) in parse_kv_list(&fields) {
                out.extra_fields.insert(k, v);
            }
        }

        out
    }

    /// Whether the Loki layer should be attached at `init_tracing` time.
    ///
    /// Returns `true` iff a non-empty [`Self::url`] is configured — every
    /// other field is optional metadata.
    pub fn is_enabled(&self) -> bool {
        self.url
            .as_deref()
            .map(str::trim)
            .is_some_and(|value| !value.is_empty())
    }
}

/// Build the [`tracing_loki::Layer`] and spawn its background task.
///
/// Only compiled when the `loki` cargo feature is enabled. Caller is
/// responsible for attaching the returned layer to the global subscriber and
/// spawning the returned `BackgroundTask` on a tokio runtime.
#[cfg(feature = "loki")]
pub fn build_layer(
    cfg: &LokiConfig,
) -> Result<(tracing_loki::Layer, tracing_loki::BackgroundTask), LokiLayerError> {
    use tracing_loki::url::Url;

    let raw_url = cfg.url.as_deref().ok_or(LokiLayerError::MissingUrl)?.trim();
    if raw_url.is_empty() {
        return Err(LokiLayerError::MissingUrl);
    }
    let url = Url::parse(raw_url).map_err(|err| LokiLayerError::InvalidUrl(err.to_string()))?;

    let mut builder = tracing_loki::builder();

    for (key, value) in &cfg.labels {
        builder = builder
            .label(key, value)
            .map_err(|err| LokiLayerError::InvalidLabel(key.clone(), err.to_string()))?;
    }

    for (key, value) in &cfg.extra_fields {
        builder = builder
            .extra_field(key, value)
            .map_err(|err| LokiLayerError::InvalidExtraField(key.clone(), err.to_string()))?;
    }

    if let Some(tenant) = cfg.tenant_id.as_deref().map(str::trim)
        && !tenant.is_empty()
    {
        builder = builder
            .http_header("X-Scope-OrgID", tenant)
            .map_err(|err| LokiLayerError::InvalidHeader("X-Scope-OrgID", err.to_string()))?;
    }

    if let (Some(user), Some(password)) = (cfg.username.as_deref(), cfg.password.as_deref()) {
        let basic = format!(
            "Basic {}",
            base64_encode(format!("{user}:{password}").as_bytes())
        );
        builder = builder
            .http_header("Authorization", &basic)
            .map_err(|err| LokiLayerError::InvalidHeader("Authorization", err.to_string()))?;
    }

    let (layer, task) = builder
        .build_url(url)
        .map_err(|err| LokiLayerError::Build(err.to_string()))?;
    Ok((layer, task))
}

/// Errors that can occur while building the Loki layer.
///
/// Only meaningful when the `loki` feature is enabled; exported
/// unconditionally so call sites that want to match on it still compile.
#[derive(Debug, thiserror::Error)]
pub enum LokiLayerError {
    #[error("ATHENA_LOKI_URL / loki.url is not set or empty")]
    MissingUrl,
    #[error("ATHENA_LOKI_URL is not a valid URL: {0}")]
    InvalidUrl(String),
    #[error("invalid Loki label `{0}`: {1}")]
    InvalidLabel(String, String),
    #[error("invalid Loki extra field `{0}`: {1}")]
    InvalidExtraField(String, String),
    #[error("invalid Loki HTTP header `{0}`: {1}")]
    InvalidHeader(&'static str, String),
    #[error("tracing-loki builder error: {0}")]
    Build(String),
    #[error("loki reservation layer was not installed before attach_loki_layer")]
    NotInstalled,
    #[error("failed to swap in loki layer via reload handle: {0}")]
    Reload(String),
}

fn env_string(key: &str) -> Option<String> {
    env::var(key)
        .ok()
        .map(|value| value.trim().to_string())
        .filter(|value| !value.is_empty())
}

fn parse_kv_list(raw: &str) -> Vec<(String, String)> {
    raw.split(',')
        .filter_map(|pair| {
            let pair = pair.trim();
            if pair.is_empty() {
                return None;
            }
            let (k, v) = pair.split_once('=')?;
            let k = k.trim();
            let v = v.trim();
            if k.is_empty() {
                return None;
            }
            Some((k.to_string(), v.to_string()))
        })
        .collect()
}

fn interpolate_env(raw: &str) -> Option<String> {
    let trimmed = raw.trim();
    if trimmed.is_empty() {
        return None;
    }
    if let Some(env_name) = parse_env_reference(trimmed) {
        let resolved = env::var(&env_name).ok().unwrap_or_default();
        if resolved.trim().is_empty() {
            return None;
        }
        return Some(resolved);
    }
    Some(trimmed.to_string())
}

fn lookup<'a>(config: &'a Config, key: &str) -> Option<&'a String> {
    config.loki.iter().find_map(|map| map.get(key))
}

/// Tiny in-crate base64 encoder (RFC 4648 standard alphabet) used to build the
/// `Authorization: Basic` header without pulling in another dependency.
///
/// Not exposed: the Loki feature is the only caller.
#[cfg(feature = "loki")]
fn base64_encode(input: &[u8]) -> String {
    const ALPHABET: &[u8; 64] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    let mut out = String::with_capacity(input.len().div_ceil(3) * 4);
    let mut chunks = input.chunks_exact(3);
    for chunk in chunks.by_ref() {
        let n = (u32::from(chunk[0]) << 16) | (u32::from(chunk[1]) << 8) | u32::from(chunk[2]);
        out.push(ALPHABET[((n >> 18) & 0x3f) as usize] as char);
        out.push(ALPHABET[((n >> 12) & 0x3f) as usize] as char);
        out.push(ALPHABET[((n >> 6) & 0x3f) as usize] as char);
        out.push(ALPHABET[(n & 0x3f) as usize] as char);
    }
    let rem = chunks.remainder();
    match rem.len() {
        1 => {
            let n = u32::from(rem[0]) << 16;
            out.push(ALPHABET[((n >> 18) & 0x3f) as usize] as char);
            out.push(ALPHABET[((n >> 12) & 0x3f) as usize] as char);
            out.push('=');
            out.push('=');
        }
        2 => {
            let n = (u32::from(rem[0]) << 16) | (u32::from(rem[1]) << 8);
            out.push(ALPHABET[((n >> 18) & 0x3f) as usize] as char);
            out.push(ALPHABET[((n >> 12) & 0x3f) as usize] as char);
            out.push(ALPHABET[((n >> 6) & 0x3f) as usize] as char);
            out.push('=');
        }
        _ => {}
    }
    out
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn parse_kv_list_splits_on_commas_and_trims() {
        let pairs = parse_kv_list("env=prod, service=athena , region=eu-1");
        assert_eq!(
            pairs,
            vec![
                ("env".to_string(), "prod".to_string()),
                ("service".to_string(), "athena".to_string()),
                ("region".to_string(), "eu-1".to_string()),
            ]
        );
    }

    #[test]
    fn parse_kv_list_skips_empty_or_keyless_pairs() {
        let pairs = parse_kv_list(",=value, foo=bar,");
        assert_eq!(pairs, vec![("foo".to_string(), "bar".to_string())]);
    }

    #[test]
    fn is_enabled_requires_url() {
        let cfg = LokiConfig::default();
        assert!(!cfg.is_enabled());

        let cfg = LokiConfig {
            url: Some("   ".to_string()),
            ..LokiConfig::default()
        };
        assert!(!cfg.is_enabled());

        let cfg = LokiConfig {
            url: Some("http://loki:3100".to_string()),
            ..LokiConfig::default()
        };
        assert!(cfg.is_enabled());
    }

    #[cfg(feature = "loki")]
    #[test]
    fn base64_encode_matches_reference() {
        assert_eq!(base64_encode(b""), "");
        assert_eq!(base64_encode(b"f"), "Zg==");
        assert_eq!(base64_encode(b"fo"), "Zm8=");
        assert_eq!(base64_encode(b"foo"), "Zm9v");
        assert_eq!(base64_encode(b"foob"), "Zm9vYg==");
        assert_eq!(base64_encode(b"foobar"), "Zm9vYmFy");
    }
}