mantis-rxcontrol/src/main/java/io/mantisrx/control/controllers/Derivative.java [27:37]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected Double processStep(Double input) {

        if (initialized) {
            double output = input - last;
            this.last = input;

            return output;
        } else {
            return 0.0;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mantis-runtime-autoscaler-api/src/main/java/io/mantisrx/server/worker/jobmaster/control/utils/Derivative.java [30:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected Double processStep(Double input) {

        if (initialized) {
            double output = input - last;
            this.last = input;

            return output;
        } else {
            return 0.0;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



