nodedb 0.0.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
pub mod ast;
pub mod evaluator;
pub mod functions;
pub mod label;
pub mod lexer;
pub mod parser;
pub mod remote_proto;
pub mod types;

pub use evaluator::{EvalContext, evaluate_instant, evaluate_range};
pub use label::{LabelMatchOp, LabelMatcher};
pub use parser::parse;
pub use types::{InstantSample, PromResult, RangeSeries, Sample, Series, Value};