We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SinePacer
Hi there,
First off, thanks for making such a solid package 💗.
I'm looking to move from a ConstantPacer to a SinePacer but I am struggling to get the inputs right.
ConstantPacer
My current ConstantPacer does 15000 requests over the course of a minute - so 250 requests a second throughput.
How do I get something similar with SinePacer? Where I:
I.e. Something like this:
Closest I've figured out is this:
pacer := vegeta.SinePacer{ Period: time.Minute, Mean: vegeta.Rate{Freq: 126, Per: time.Second}, Amp: vegeta.Rate{Freq: 124, Per: time.Second}, }
Many thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Question
Hi there,
First off, thanks for making such a solid package 💗.
I'm looking to move from a
ConstantPacer
to aSinePacer
but I am struggling to get the inputs right.My current
ConstantPacer
does 15000 requests over the course of a minute - so 250 requests a second throughput.How do I get something similar with
SinePacer
?Where I:
I.e. Something like this:
Closest I've figured out is this:
Many thanks.
The text was updated successfully, but these errors were encountered: