Fix missing newline in Graphite msg serialization master 1.0.2
authorSiraaj Khandkar <siraaj@khandkar.net>
Mon, 16 May 2022 17:14:32 +0000 (13:14 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Mon, 16 May 2022 17:15:33 +0000 (13:15 -0400)
thanks to @mcesaro in https://github.com/xandkar/beam_stats/pull/27

src/beam_stats.app.src
src/beam_stats_msg_graphite.erl

index 5153c60..0297909 100644 (file)
@@ -1,7 +1,7 @@
 {application, beam_stats,
  [
   {description, "Periodic VM stats production and consumption."},
-  {vsn, "1.0.1"},
+  {vsn, "1.0.2"},
   {registered, []},
   {applications,
     [ kernel
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.027294 seconds and 4 git commands to generate.