, memory = Memory
, io_bytes_in = IOBytesIn
, io_bytes_out = IOBytesOut
+ , context_switches = ContextSwitches
}
) ->
NodeIDBin = node_id_to_bin(NodeID),
Msgs1 =
[ io_bytes_in_to_msg(IOBytesIn)
, io_bytes_out_to_msg(IOBytesOut)
+ , context_switches_to_msg(ContextSwitches)
| memory_to_msgs(Memory)
],
Msgs2 = [statsd_msg_add_name_prefix(M, NodeIDBin) || M <- Msgs1],
[statsd_msg_to_bin(M) || M <- Msgs2].
+-spec context_switches_to_msg(non_neg_integer()) ->
+ statsd_msg().
+context_switches_to_msg(ContextSwitches) ->
+ #statsd_msg
+ { name = <<"context_switches">>
+ , value = ContextSwitches
+ , type = gauge
+ }.
+
-spec io_bytes_in_to_msg(non_neg_integer()) ->
statsd_msg().
io_bytes_in_to_msg(IOBytesIn) ->
{ timestamp :: erlang:timestamp()
, node_id :: atom()
, memory :: [{atom(), non_neg_integer()}]
+
, previous_io_bytes_in :: non_neg_integer()
, previous_io_bytes_out :: non_neg_integer()
, current_io_bytes_in :: non_neg_integer()
, current_io_bytes_out :: non_neg_integer()
+
+ , previous_context_switches :: non_neg_integer()
+ , current_context_switches :: non_neg_integer()
}).
-define(T, #?MODULE).
{ {input , CurrentIOBytesIn}
, {output , CurrentIOBytesOut}
} = erlang:statistics(io),
+ {CurrentContextSwitches, 0} = erlang:statistics(context_switches),
?T
{ timestamp = os:timestamp()
, node_id = erlang:node()
, previous_io_bytes_out = 0
, current_io_bytes_in = CurrentIOBytesIn
, current_io_bytes_out = CurrentIOBytesOut
+ , previous_context_switches = 0
+ , current_context_switches = CurrentContextSwitches
}.
-spec update(t()) ->
update(?T
{ previous_io_bytes_in = PreviousIOBytesIn
, previous_io_bytes_out = PreviousIOBytesOut
+ , previous_context_switches = PreviousContextSwitches
}
) ->
{ {input , CurrentIOBytesIn}
, {output , CurrentIOBytesOut}
} = erlang:statistics(io),
+ {CurrentContextSwitches, 0} = erlang:statistics(context_switches),
?T
{ timestamp = os:timestamp()
, node_id = erlang:node()
, previous_io_bytes_out = PreviousIOBytesOut
, current_io_bytes_in = CurrentIOBytesIn
, current_io_bytes_out = CurrentIOBytesOut
+ , previous_context_switches = PreviousContextSwitches
+ , current_context_switches = CurrentContextSwitches
}.
-spec export(t()) ->
, previous_io_bytes_out = PreviousIOBytesOut
, current_io_bytes_in = CurrentIOBytesIn
, current_io_bytes_out = CurrentIOBytesOut
+ , previous_context_switches = PreviousContextSwitches
+ , current_context_switches = CurrentContextSwitches
}
) ->
#beam_stats
, memory = Memory
, io_bytes_in = CurrentIOBytesIn - PreviousIOBytesIn
, io_bytes_out = CurrentIOBytesOut - PreviousIOBytesOut
+ , context_switches = CurrentContextSwitches - PreviousContextSwitches
}.
, memory = [{mem_type_foo, 1}]
, io_bytes_in = 3
, io_bytes_out = 7
+ , context_switches = 5
},
ServerPort = 8125,
{ok, ServerSocket} = gen_udp:open(ServerPort, [binary, {active, false}]),
{ok, {_, _, Data}} = ResultOfReceive,
<< "beam_stats.node_foo_host_bar.io.bytes_in:3|g\n"
, "beam_stats.node_foo_host_bar.io.bytes_out:7|g\n"
+ , "beam_stats.node_foo_host_bar.context_switches:5|g\n"
, "beam_stats.node_foo_host_bar.memory.mem_type_foo:1|g\n"
>> = Data.