All Versions
6
Latest Version
Avg Release Cycle
-
Latest Release
-
Changelog History
Changelog History
-
v3.0.86 Changes
- ๐ฅ BREAKING: Changes to lower level interfaces unlikely to affect most users, including
IStatsd
andIStopwatch
- ๐ Fix threading bug when calling
Metrics.Send()
from multiple threads (thanks for helping track down @bronumski!) - ๐ Fix timing reporting bug that significantly under reported multiple-millisecond timings (thanks @arexsutton!)
- ๐ Fix casing for .NET Core dependency (thanks for pointing out @mikemitchellrightside!)
- ๐ฅ BREAKING: Changes to lower level interfaces unlikely to affect most users, including
-
v2.0.68 Changes
- ๐ฅ BREAKING: Drops support for < .NET 4.5
- โ Add .NET Standard 1.3 support (thanks @TerribleDev!)
- ๐ Fix async support (previously would only measure async creation time)
-
v1.4.51 Changes
- โ Add a
Metrics.IsConfigured()
method which returns whether the Metrics class has been initialised yet (thanks @dkhanaferov!)
- โ Add a
-
v1.2.32 Changes
- ๐ Fix the
Stopwatch
class to make it more consisten with .NET's and fix an overflow bug (thanks @knocte!) - ๐ Fix bug in how IPv4 addresses are resolved
- ๐ Fix the
-
v1.1.0 Changes
- โ Add support for gauge delta values (thanks @crunchie84!)
- Mark the
Metrics.Gauge()
method obsolete in favour of the newMetrics.GaugeAbsoluteValue()
- ๐ง Mark the
StatsdClient.Configuration.Naming
class obsolete in favour of settingMetricsConfig.Prefix
when you callMetrics.Configure()
, which reduces the code you need when actually sending metrics each time - ๐ฆ Expose a sample rate for the disposable version of the timer (
Metrics.StartTimer()
)