nodedb 0.3.0-beta.1

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
15
16
17
18
// SPDX-License-Identifier: BUSL-1.1

//! Prometheus-compatible PromQL HTTP API at `/obsv/api/v1/*`.
//!
//! Grafana data source URL: `http://nodedb:6480/obsv/api`

pub mod buildinfo;
pub mod handlers;
pub(crate) mod helpers;
mod remote;
pub mod types;

pub use buildinfo::buildinfo;
pub use handlers::{
    annotations, instant_query, label_names, label_values, metadata, range_query, series_query,
};
pub use remote::{remote_read, remote_write};
pub use types::{InstantQueryParams, LabelsParams, RangeQueryParams, SeriesParams};