micromegas/client/
mod.rs

1/// FlightSQL client
2pub mod flightsql_client;
3
4/// FlightSQLClientFactory allows the creation of authenticated clients
5pub mod flightsql_client_factory;
6
7/// Library to validate cpu budgets of traces based on a recurring top-level span
8pub mod frame_budget_reporting;
9
10/// Fetch cpu traces and transform them into perfetto format
11pub mod perfetto_trace_client;
12pub use perfetto_trace_client::SpanTypes;
13
14/// Process query builder for finding processes with various filters
15pub mod query_processes;