-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Open
Description
Question
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.
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:
- start at 0 requests
- peak at 250 (or whatever to reach 250 throughput) requests a second
- finish at 0 requests
- (optional) last for a minute
- (optional) total 15000 requests
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.
Metadata
Metadata
Assignees
Labels
No labels