133d718fe4
We decided to go this route because it'll most likely be safer in the API as we need to explicitly add namespaces support to the various API endpoints this way. For example, 'pull' should have 2 namespaces: local and remote, and the GroupFilter (which would otherwise contain exactly *one* namespace parameter) needs to be applied for both sides (to decide what to pull from the remote, and what to *remove* locally as cleanup). The *datastore* types still contain the namespace and have a `.backup_ns()` getter. Note that the datastore's `Display` implementations are no longer safe to use as a deserializable string. Additionally, some datastore based methods now have been exposed via the BackupGroup/BackupDir types to avoid a "round trip" in code. Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com> Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
47 lines
1.1 KiB
Rust
47 lines
1.1 KiB
Rust
use anyhow::Error;
|
|
|
|
use pbs_api_types::{Authid, BackupNamespace, BackupType};
|
|
use pbs_client::{BackupWriter, HttpClient, HttpClientOptions};
|
|
|
|
async fn upload_speed() -> Result<f64, Error> {
|
|
let host = "localhost";
|
|
let datastore = "store2";
|
|
|
|
let auth_id = Authid::root_auth_id();
|
|
|
|
let options = HttpClientOptions::default()
|
|
.interactive(true)
|
|
.ticket_cache(true);
|
|
|
|
let client = HttpClient::new(host, 8007, auth_id, options)?;
|
|
|
|
let backup_time = proxmox_time::epoch_i64();
|
|
|
|
let client = BackupWriter::start(
|
|
client,
|
|
None,
|
|
datastore,
|
|
&BackupNamespace::root(),
|
|
&(BackupType::Host, "speedtest".to_string(), backup_time).into(),
|
|
false,
|
|
true,
|
|
)
|
|
.await?;
|
|
|
|
println!("start upload speed test");
|
|
let res = client.upload_speedtest(true).await?;
|
|
|
|
Ok(res)
|
|
}
|
|
|
|
fn main() {
|
|
match proxmox_async::runtime::main(upload_speed()) {
|
|
Ok(mbs) => {
|
|
println!("average upload speed: {} MB/s", mbs);
|
|
}
|
|
Err(err) => {
|
|
eprintln!("ERROR: {}", err);
|
|
}
|
|
}
|
|
}
|