diff options
author | Tom Forbes <tom@tomforb.es> | 2020-11-29 11:05:53 +0000 |
---|---|---|
committer | Tom Forbes <tom@tomforb.es> | 2020-11-29 11:05:53 +0000 |
commit | 5b2f25b085b0b91e1d5bb46dad55caecd86764d9 (patch) | |
tree | 81c6c0229efda737189137b3196329c137d76b2f | |
parent | 517e0474a280c79cafd9d054fb251680a5101f0b (diff) |
Add a --watch command to graph execution times of arbitrary commands. Closes #103pr/103
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 760659e..e4bb83b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -294,7 +294,7 @@ fn main() -> Result<()> { ) .split(chunks[host_id]); - let mut ping_text = format!("{} {}", action); + let mut ping_text = format!("{} {}", action, host); let s = format!(" ({})", host); ping_text.push_str(&s.to_string()); |