Add a cluster saturation time check to the Density test

This commit is contained in:
gmarek
2016-02-26 15:37:35 +01:00
parent f15d8528b6
commit c9abcfa512
2 changed files with 32 additions and 4 deletions

View File

@@ -124,11 +124,18 @@ type PodStartupLatency struct {
}
type SchedulingLatency struct {
Scheduling LatencyMetric `json:"scheduling:`
Scheduling LatencyMetric `json:"scheduling"`
Binding LatencyMetric `json:"binding"`
Total LatencyMetric `json:"total"`
}
type SaturationTime struct {
TimeToSaturate time.Duration `json:"timeToStaturate"`
NumberOfNodes int `json:"numberOfNodes"`
NumberOfPods int `json:"numberOfPods"`
Throughput float32 `json:"throughput"`
}
type APICall struct {
Resource string `json:"resource"`
Verb string `json:"verb"`