Write f64 values

This commit is contained in:
Dominik Werder
2022-04-05 15:36:18 +02:00
parent 1e76cb1391
commit 83bfc66ec4
8 changed files with 759 additions and 138 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ pub fn main() -> Result<(), Error> {
}
let opts = DaqIngestOpts::parse();
match opts.subcmd {
SubCmd::Bsread(k) => netfetch::zmtp::zmtp_client(&k.source, k.rcvbuf).await?,
SubCmd::Bsread(k) => netfetch::zmtp::zmtp_client(&k.scylla, &k.source, k.rcvbuf, k.do_pulse_id).await?,
SubCmd::ListPkey => daqingest::query::list_pkey().await?,
SubCmd::ListPulses => daqingest::query::list_pulses().await?,
}
+4
View File
@@ -21,8 +21,12 @@ pub enum SubCmd {
#[derive(Debug, Parser)]
pub struct Bsread {
#[clap(long)]
pub scylla: String,
#[clap(long)]
pub source: String,
#[clap(long)]
pub rcvbuf: Option<u32>,
#[clap(long)]
pub do_pulse_id: bool,
}