UNPKG

480 BTypeScriptView Raw
1/** @module count */
2/**
3 * Types of counters that measure different types of metrics
4 */
5export declare enum CounterType {
6 /** Counters that measure execution time intervals */
7 Interval = 0,
8 /** Counters that keeps the latest measured value */
9 LastValue = 1,
10 /** Counters that measure min/average/max statistics */
11 Statistics = 2,
12 /** Counter that record timestamps */
13 Timestamp = 3,
14 /** Counter that increment counters */
15 Increment = 4
16}