rrd: rust fmt
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
@ -3,24 +3,22 @@
|
||||
use std::path::PathBuf;
|
||||
|
||||
use anyhow::{bail, Error};
|
||||
use serde::{Serialize, Deserialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use serde_json::json;
|
||||
|
||||
use proxmox_router::cli::{
|
||||
complete_file_name, run_cli_command, CliCommand, CliCommandMap, CliEnvironment,
|
||||
};
|
||||
use proxmox_router::RpcEnvironment;
|
||||
use proxmox_router::cli::{run_cli_command, complete_file_name, CliCommand, CliCommandMap, CliEnvironment};
|
||||
use proxmox_schema::{api, ApiStringFormat, ApiType, IntegerSchema, Schema, StringSchema};
|
||||
|
||||
use proxmox_sys::fs::CreateOptions;
|
||||
|
||||
use proxmox_rrd::rrd::{CF, DST, RRA, RRD};
|
||||
|
||||
pub const RRA_INDEX_SCHEMA: Schema = IntegerSchema::new(
|
||||
"Index of the RRA.")
|
||||
.minimum(0)
|
||||
.schema();
|
||||
pub const RRA_INDEX_SCHEMA: Schema = IntegerSchema::new("Index of the RRA.").minimum(0).schema();
|
||||
|
||||
pub const RRA_CONFIG_STRING_SCHEMA: Schema = StringSchema::new(
|
||||
"RRA configuration")
|
||||
pub const RRA_CONFIG_STRING_SCHEMA: Schema = StringSchema::new("RRA configuration")
|
||||
.format(&ApiStringFormat::PropertyString(&RRAConfig::API_SCHEMA))
|
||||
.schema();
|
||||
|
||||
@ -49,7 +47,6 @@ pub struct RRAConfig {
|
||||
)]
|
||||
/// Dump the RRD file in JSON format
|
||||
pub fn dump_rrd(path: String) -> Result<(), Error> {
|
||||
|
||||
let rrd = RRD::load(&PathBuf::from(path), false)?;
|
||||
serde_json::to_writer_pretty(std::io::stdout(), &rrd)?;
|
||||
println!();
|
||||
@ -67,14 +64,19 @@ pub fn dump_rrd(path: String) -> Result<(), Error> {
|
||||
)]
|
||||
/// RRD file information
|
||||
pub fn rrd_info(path: String) -> Result<(), Error> {
|
||||
|
||||
let rrd = RRD::load(&PathBuf::from(path), false)?;
|
||||
|
||||
println!("DST: {:?}", rrd.source.dst);
|
||||
|
||||
for (i, rra) in rrd.rra_list.iter().enumerate() {
|
||||
// use RRAConfig property string format
|
||||
println!("RRA[{}]: {:?},r={},n={}", i, rra.cf, rra.resolution, rra.data.len());
|
||||
println!(
|
||||
"RRA[{}]: {:?},r={},n={}",
|
||||
i,
|
||||
rra.cf,
|
||||
rra.resolution,
|
||||
rra.data.len()
|
||||
);
|
||||
}
|
||||
|
||||
Ok(())
|
||||
@ -97,15 +99,11 @@ pub fn rrd_info(path: String) -> Result<(), Error> {
|
||||
},
|
||||
)]
|
||||
/// Update the RRD database
|
||||
pub fn update_rrd(
|
||||
path: String,
|
||||
time: Option<u64>,
|
||||
value: f64,
|
||||
) -> Result<(), Error> {
|
||||
|
||||
pub fn update_rrd(path: String, time: Option<u64>, value: f64) -> Result<(), Error> {
|
||||
let path = PathBuf::from(path);
|
||||
|
||||
let time = time.map(|v| v as f64)
|
||||
let time = time
|
||||
.map(|v| v as f64)
|
||||
.unwrap_or_else(proxmox_time::epoch_f64);
|
||||
|
||||
let mut rrd = RRD::load(&path, false)?;
|
||||
@ -147,7 +145,6 @@ pub fn fetch_rrd(
|
||||
start: Option<u64>,
|
||||
end: Option<u64>,
|
||||
) -> Result<(), Error> {
|
||||
|
||||
let rrd = RRD::load(&PathBuf::from(path), false)?;
|
||||
|
||||
let data = rrd.extract_data(cf, resolution, start, end)?;
|
||||
@ -171,18 +168,14 @@ pub fn fetch_rrd(
|
||||
)]
|
||||
/// Return the Unix timestamp of the first time slot inside the
|
||||
/// specified RRA (slot start time)
|
||||
pub fn first_update_time(
|
||||
path: String,
|
||||
rra_index: usize,
|
||||
) -> Result<(), Error> {
|
||||
|
||||
pub fn first_update_time(path: String, rra_index: usize) -> Result<(), Error> {
|
||||
let rrd = RRD::load(&PathBuf::from(path), false)?;
|
||||
|
||||
if rra_index >= rrd.rra_list.len() {
|
||||
bail!("rra-index is out of range");
|
||||
}
|
||||
let rra = &rrd.rra_list[rra_index];
|
||||
let duration = (rra.data.len() as u64)*rra.resolution;
|
||||
let duration = (rra.data.len() as u64) * rra.resolution;
|
||||
let first = rra.slot_start_time((rrd.source.last_update as u64).saturating_sub(duration));
|
||||
|
||||
println!("{}", first);
|
||||
@ -200,7 +193,6 @@ pub fn first_update_time(
|
||||
)]
|
||||
/// Return the Unix timestamp of the last update
|
||||
pub fn last_update_time(path: String) -> Result<(), Error> {
|
||||
|
||||
let rrd = RRD::load(&PathBuf::from(path), false)?;
|
||||
|
||||
println!("{}", rrd.source.last_update);
|
||||
@ -218,7 +210,6 @@ pub fn last_update_time(path: String) -> Result<(), Error> {
|
||||
)]
|
||||
/// Return the time and value from the last update
|
||||
pub fn last_update(path: String) -> Result<(), Error> {
|
||||
|
||||
let rrd = RRD::load(&PathBuf::from(path), false)?;
|
||||
|
||||
let result = json!({
|
||||
@ -251,18 +242,12 @@ pub fn last_update(path: String) -> Result<(), Error> {
|
||||
},
|
||||
)]
|
||||
/// Create a new RRD file
|
||||
pub fn create_rrd(
|
||||
dst: DST,
|
||||
path: String,
|
||||
rra: Vec<String>,
|
||||
) -> Result<(), Error> {
|
||||
|
||||
pub fn create_rrd(dst: DST, path: String, rra: Vec<String>) -> Result<(), Error> {
|
||||
let mut rra_list = Vec::new();
|
||||
|
||||
for item in rra.iter() {
|
||||
let rra: RRAConfig = serde_json::from_value(
|
||||
RRAConfig::API_SCHEMA.parse_property_string(item)?
|
||||
)?;
|
||||
let rra: RRAConfig =
|
||||
serde_json::from_value(RRAConfig::API_SCHEMA.parse_property_string(item)?)?;
|
||||
println!("GOT {:?}", rra);
|
||||
rra_list.push(RRA::new(rra.cf, rra.r, rra.n as usize));
|
||||
}
|
||||
@ -293,12 +278,7 @@ pub fn create_rrd(
|
||||
},
|
||||
)]
|
||||
/// Resize. Change the number of data slots for the specified RRA.
|
||||
pub fn resize_rrd(
|
||||
path: String,
|
||||
rra_index: usize,
|
||||
slots: i64,
|
||||
) -> Result<(), Error> {
|
||||
|
||||
pub fn resize_rrd(path: String, rra_index: usize, slots: i64) -> Result<(), Error> {
|
||||
let path = PathBuf::from(&path);
|
||||
|
||||
let mut rrd = RRD::load(&path, false)?;
|
||||
@ -315,12 +295,12 @@ pub fn resize_rrd(
|
||||
bail!("numer of new slots is too small ('{}' < 1)", new_slots);
|
||||
}
|
||||
|
||||
if new_slots > 1024*1024 {
|
||||
if new_slots > 1024 * 1024 {
|
||||
bail!("numer of new slots is too big ('{}' > 1M)", new_slots);
|
||||
}
|
||||
|
||||
let rra_end = rra.slot_end_time(rrd.source.last_update as u64);
|
||||
let rra_start = rra_end - rra.resolution*(rra.data.len() as u64);
|
||||
let rra_start = rra_end - rra.resolution * (rra.data.len() as u64);
|
||||
let (start, reso, data) = rra.extract_data(rra_start, rra_end, rrd.source.last_update);
|
||||
|
||||
let mut new_rra = RRA::new(rra.cf, rra.resolution, new_slots as usize);
|
||||
@ -336,7 +316,6 @@ pub fn resize_rrd(
|
||||
}
|
||||
|
||||
fn main() -> Result<(), Error> {
|
||||
|
||||
let uid = nix::unistd::Uid::current();
|
||||
|
||||
let username = match nix::unistd::User::from_uid(uid)? {
|
||||
@ -349,57 +328,56 @@ fn main() -> Result<(), Error> {
|
||||
"create",
|
||||
CliCommand::new(&API_METHOD_CREATE_RRD)
|
||||
.arg_param(&["path"])
|
||||
.completion_cb("path", complete_file_name)
|
||||
.completion_cb("path", complete_file_name),
|
||||
)
|
||||
.insert(
|
||||
"dump",
|
||||
CliCommand::new(&API_METHOD_DUMP_RRD)
|
||||
.arg_param(&["path"])
|
||||
.completion_cb("path", complete_file_name)
|
||||
)
|
||||
.completion_cb("path", complete_file_name),
|
||||
)
|
||||
.insert(
|
||||
"fetch",
|
||||
CliCommand::new(&API_METHOD_FETCH_RRD)
|
||||
.arg_param(&["path"])
|
||||
.completion_cb("path", complete_file_name)
|
||||
)
|
||||
.completion_cb("path", complete_file_name),
|
||||
)
|
||||
.insert(
|
||||
"first",
|
||||
CliCommand::new(&API_METHOD_FIRST_UPDATE_TIME)
|
||||
.arg_param(&["path"])
|
||||
.completion_cb("path", complete_file_name)
|
||||
.completion_cb("path", complete_file_name),
|
||||
)
|
||||
.insert(
|
||||
"info",
|
||||
CliCommand::new(&API_METHOD_RRD_INFO)
|
||||
.arg_param(&["path"])
|
||||
.completion_cb("path", complete_file_name)
|
||||
.completion_cb("path", complete_file_name),
|
||||
)
|
||||
.insert(
|
||||
"last",
|
||||
CliCommand::new(&API_METHOD_LAST_UPDATE_TIME)
|
||||
.arg_param(&["path"])
|
||||
.completion_cb("path", complete_file_name)
|
||||
.completion_cb("path", complete_file_name),
|
||||
)
|
||||
.insert(
|
||||
"lastupdate",
|
||||
CliCommand::new(&API_METHOD_LAST_UPDATE)
|
||||
.arg_param(&["path"])
|
||||
.completion_cb("path", complete_file_name)
|
||||
.completion_cb("path", complete_file_name),
|
||||
)
|
||||
.insert(
|
||||
"resize",
|
||||
CliCommand::new(&API_METHOD_RESIZE_RRD)
|
||||
.arg_param(&["path"])
|
||||
.completion_cb("path", complete_file_name)
|
||||
.completion_cb("path", complete_file_name),
|
||||
)
|
||||
.insert(
|
||||
"update",
|
||||
CliCommand::new(&API_METHOD_UPDATE_RRD)
|
||||
.arg_param(&["path"])
|
||||
.completion_cb("path", complete_file_name)
|
||||
)
|
||||
;
|
||||
.completion_cb("path", complete_file_name),
|
||||
);
|
||||
|
||||
let mut rpcenv = CliEnvironment::new();
|
||||
rpcenv.set_auth_id(Some(format!("{}@pam", username)));
|
||||
@ -407,5 +385,4 @@ fn main() -> Result<(), Error> {
|
||||
run_cli_command(cmd_def, rpcenv, None);
|
||||
|
||||
Ok(())
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user