obzenflow_core 0.2.4

Core domain layer for ObzenFlow - pure abstractions with minimal dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: MIT OR Apache-2.0
// SPDX-FileCopyrightText: 2025-2026 ObzenFlow Contributors
// https://obzenflow.dev

//! Core metric primitives - atomic operations only
//!
//! These are the foundational building blocks that all metrics are built upon.
//! They provide only atomic operations and can evolve without breaking upper layers.

mod counter;
mod gauge;
mod histogram;
mod time_unit;

pub use counter::Counter;
pub use gauge::Gauge;
pub use histogram::Histogram;
pub use time_unit::TimeUnit;