function incCounter()

in src/autoscaler-common/counters-base.js [380:386]


function incCounter(counterName, counterAttributes) {
  const counter = COUNTERS.get(counterName);
  if (!counter?.cumulative) {
    throw new Error('Unknown counter: ' + counterName);
  }
  counter.cumulative.add(1, counterAttributes);
}