Code coverage report for core/src/apm/histogram.ts

Statements: 100% (1 / 1)      Branches: 100% (0 / 0)      Functions: 100% (0 / 0)      Lines: 100% (1 / 1)      Ignored: none     

All files » core/src/apm/ » histogram.ts
1 2 3 4 5 6 7 8 9 10 11              1      
import {Tags} from '../util';
import {Settable} from './settable';
 
 
export type Histogram<T> = Settable<T>;
 
 
export abstract class HistogramFactory<T> {
  abstract histogram(name: string, tags: Tags): Histogram<T>;
}