Live: remove measurement controller (#32622)

This commit is contained in:
Ryan McKinley
2021-04-01 22:32:56 -07:00
committed by GitHub
parent db12818d25
commit d2afcdd415
16 changed files with 238 additions and 372 deletions
+3 -3
View File
@@ -35,12 +35,12 @@ func (p *testStreamHandler) RunStream(ctx context.Context, request *backend.RunS
switch request.Path {
case "random-2s-stream":
conf = testStreamConfig{
Interval: 200 * time.Millisecond,
Interval: 2 * time.Second,
}
case "random-flakey-stream":
conf = testStreamConfig{
Interval: 200 * time.Millisecond,
Drop: 0.6,
Interval: 100 * time.Millisecond,
Drop: 0.75, // keep 25%
}
case "random-20Hz-stream":
conf = testStreamConfig{