mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-14 17:02:56 +00:00
The general idea is that the VM informant binary is added to the vm-compute-node images only. `compute_tools` then will run whatever's at `/bin/vm-informant`, if the path exists.
16 lines
280 B
Rust
16 lines
280 B
Rust
//!
|
|
//! Various tools and helpers to handle cluster / compute node (Postgres)
|
|
//! configuration.
|
|
//!
|
|
pub mod checker;
|
|
pub mod config;
|
|
pub mod http;
|
|
#[macro_use]
|
|
pub mod logger;
|
|
pub mod compute;
|
|
pub mod informant;
|
|
pub mod monitor;
|
|
pub mod params;
|
|
pub mod pg_helpers;
|
|
pub mod spec;
|