interval-metrics icon indicating copy to clipboard operation
interval-metrics copied to clipboard

Clojure data structures for performance metrics over discrete time intervals.

Results 2 interval-metrics issues
Sort by recently updated
recently updated
newest added

This was a little surprising to me: ``` ns=> (def r (rate+latency)) ns=> (type r) interval_metrics.core.RateLatency ns=> (def u (update! r 1)) ns=> (type u) interval_metrics.core.Rate ``` I think maybe...

Reservoir updates its size before writing a new value in. A concurrently reading thread might see the initial value from the array. We should fill the array with a default...