Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/NanoTube/Core/MetricExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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))
{
Expand Down