| 37 | ) |
| 38 | |
| 39 | type Scaler interface { |
| 40 | Scale(apiName string, request int32) error |
| 41 | GetInFlightRequests(apiName string, window time.Duration) (*float64, error) |
| 42 | GetAutoscalingSpec(apiName string) (*userconfig.Autoscaling, error) |
| 43 | CurrentRequestedReplicas(apiName string) (int32, error) |
| 44 | } |
| 45 | |
| 46 | type Autoscaler struct { |
| 47 | logger *zap.SugaredLogger |
no outgoing calls
no test coverage detected