diff --git a/src/NanoTube/Core/MetricExtensions.cs b/src/NanoTube/Core/MetricExtensions.cs index 1f4e7ac..46ba4aa 100644 --- a/src/NanoTube/Core/MetricExtensions.cs +++ b/src/NanoTube/Core/MetricExtensions.cs @@ -81,7 +81,7 @@ private static string ToStatsDString(this IMetric metric) { //TODO: 1-19-2012 - this may be entirely wrong - we need to find a statsd to test against - eat timestamp KeyValue keyValue = (KeyValue)metric; - return string.Format(CultureInfo.InvariantCulture, "{0}:{1:0.###}|ms", keyValue.Key, keyValue.Value); + return string.Format(CultureInfo.InvariantCulture, "{0}:{1:0.###}|g", keyValue.Key, keyValue.Value); } else if (t == typeof(Timing)) {