Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cli): add message limit option to simulate command #1600

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ export class Commander {
.option('-im, --message-interval <MILLISECONDS>', 'interval of publishing messages', parseNumber, 1000)
.option(
'-L, --limit <NUMBER>',
'The maximum number of messages to publish. A value of 0 means no limit on the number of messages',
'the maximum number of messages to publish. a value of 0 means no limit on the number of messages',
parseNumber,
0,
)
Expand Down Expand Up @@ -584,6 +584,12 @@ export class Commander {
.option('-c, --count <NUMBER>', 'the number of connections', parseNumber, 1000)
.option('-i, --interval <MILLISECONDS>', 'interval of connecting to the broker', parseNumber, 10)
.option('-im, --message-interval <MILLISECONDS>', 'interval of publishing messages', parseNumber, 1000)
.option(
'-L, --limit <NUMBER>',
'the maximum number of messages to publish. a value of 0 means no limit on the number of messages',
parseNumber,
0,
)
.option(
'-t, --topic <TOPIC>',
'the message topic, support %u (username), %c (client id), %i (index), %sc (scenario) variables',
Expand Down
Loading