UNPKG

213 BPlain TextView Raw
1// see: https://github.com/siimon/prom-client#usage-with-nodejss-cluster-module
2export enum AggregatorStrategy {
3 SUM = 'sum',
4 FIRST = 'first',
5 MIN = 'min',
6 MAX = 'max',
7 AVERAGE = 'average',
8 OMIT = 'omit',
9}