Fix missing newline in Graphite msg serialization
[beam_stats.git] / src / beam_stats_msg_graphite.erl
index 73b770c..159900e 100644 (file)
@@ -78,7 +78,7 @@ to_iolist(
     ValueBin = integer_to_binary(Value),
     TimestampInt = timestamp_to_integer(Timestamp),
     TimestampBin = integer_to_binary(TimestampInt),
-    [PathIOList, <<" ">>, ValueBin, <<" ">>, TimestampBin].
+    [PathIOList, <<" ">>, ValueBin, <<" ">>, TimestampBin, <<"\n">>].
 
 -spec path_to_iolist([binary()]) ->
     iolist().
This page took 0.018982 seconds and 4 git commands to generate.