-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ddd45cc
commit 9fc78de
Showing
9 changed files
with
1,571 additions
and
525 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
pub struct GaggleEcho { | ||
_sequence: u32, | ||
_acknowledge: Option<u32>, | ||
} | ||
|
||
/// Commands sent to/from Works and Managers to control a Gaggle. | ||
pub enum GaggleCommand { | ||
ManagerShuttingDown, | ||
Shutdown, | ||
WorkerShuttingDown, | ||
/// Notification that a Worker is standing by and ready to start the load test. | ||
WorkerIsReady, | ||
} | ||
|
||
pub enum GagglePhase { | ||
WaitingForWorkers, | ||
} | ||
|
||
pub enum GaggleCommands { | ||
Control(GaggleCommand), | ||
Echo(GaggleEcho), | ||
// Not Gaggle-specific | ||
//Error(GooseErrorMetrics), | ||
//Request(GooseRequestMetrics), | ||
//Scenario(ScenarioMetrics), | ||
//Transaction(TransactionMetrics), | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.