nodedb 0.2.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: BUSL-1.1

//! OpenTelemetry Protocol (OTLP) ingest and export.
//!
//! Ingest: HTTP receivers at `/v1/metrics`, `/v1/traces`, `/v1/logs`.
//! Export: Push NodeDB's own traces/metrics to an OTLP collector.

pub mod exporter;
pub mod grpc;
pub mod proto;
pub mod receiver;

pub use exporter::ExporterConfig;
pub use receiver::OtelConfig;