Skip to content

Commit

Permalink
Increase memory limit for testbeds
Browse files Browse the repository at this point in the history
  • Loading branch information
pmm-sumo committed Mar 8, 2021
1 parent c68199c commit 08ef6ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions testbed/tests/metric_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestMetric10kDPS(t *testing.T) {
testbed.NewOTLPDataReceiver(testbed.GetAvailablePort(t)),
testbed.ResourceSpec{
ExpectedMaxCPU: 50,
ExpectedMaxRAM: 100,
ExpectedMaxRAM: 130,
},
},
{
Expand All @@ -46,7 +46,7 @@ func TestMetric10kDPS(t *testing.T) {
datareceivers.NewCarbonDataReceiver(testbed.GetAvailablePort(t)),
testbed.ResourceSpec{
ExpectedMaxCPU: 237,
ExpectedMaxRAM: 110,
ExpectedMaxRAM: 130,
},
},
{
Expand All @@ -55,7 +55,7 @@ func TestMetric10kDPS(t *testing.T) {
datareceivers.NewSFxMetricsDataReceiver(testbed.GetAvailablePort(t)),
testbed.ResourceSpec{
ExpectedMaxCPU: 120,
ExpectedMaxRAM: 111,
ExpectedMaxRAM: 131,
},
},
}
Expand Down
4 changes: 2 additions & 2 deletions testbed/tests/trace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func TestTrace10kSPS(t *testing.T) {
testbed.NewOTLPDataReceiver(testbed.GetAvailablePort(t)),
testbed.ResourceSpec{
ExpectedMaxCPU: 20,
ExpectedMaxRAM: 90,
ExpectedMaxRAM: 110,
},
},
{
Expand All @@ -57,7 +57,7 @@ func TestTrace10kSPS(t *testing.T) {
datareceivers.NewSapmDataReceiver(testbed.GetAvailablePort(t)),
testbed.ResourceSpec{
ExpectedMaxCPU: 40,
ExpectedMaxRAM: 105,
ExpectedMaxRAM: 125,
},
},
}
Expand Down

0 comments on commit 08ef6ff

Please sign in to comment.