You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
long_about = "This application emulates a real set of hardware sensors that can report on environmental conditions such as temperature, pressure, humidity, etc."
33
33
)]
34
34
pubstructCli{
35
-
/// Turns verbose console debug output on
35
+
/// Turns verbose console debug output on.
36
36
#[arg(short, long)]
37
37
pubdebug:bool,
38
-
/// The amount of requests to make
38
+
/// The number of sensor readings to post.
39
39
/// [DEFAULT: 1]
40
40
#[arg(short = 'n', long)]
41
41
pubrequest_amount:Option<u32>,
42
-
/// The time between each request (in seconds)
42
+
/// The time between each sensor reading post (in seconds).
43
43
/// [DEFAULT: 10]
44
44
#[arg(short = 't', long = "time-per-request")]
45
45
pubtime_per_request_s:Option<u64>,
46
-
/// The total time over which all the requests must be sent (in seconds, alternative to -t)
46
+
/// The total time over which all the sensor reading posts must be sent (in seconds, alternative to -t).
47
47
#[arg(short = 'T', long = "total-time")]
48
48
pubtotal_time_s:Option<u64>,
49
-
/// The number of threads to spawn. The workload will be cloned to each thread, not divided
49
+
/// The number of threads to spawn. The workload will be cloned to each thread, not divided.
0 commit comments