Skip to content

Commit

Permalink
add missing aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
uwiger committed Dec 12, 2014
1 parent fa791ae commit 6c3def3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/riak_core_stat.erl
Expand Up @@ -82,10 +82,13 @@ register_vnode_stats(Module, Index, Pid) ->
[{aliases, [{value, vnodeq_atom(Module, <<"s_running">>)}]}]),
exometer:ensure([P, ?APP, vnodeq, Module],
{function, riak_core_stat, vnodeq_stats, [Module],
histogram, [min,max,total]},
[{aliases, [{min, vnodeq_atom(Module, <<"q_min">>)},
{max, vnodeq_atom(Module, <<"q_max">>)},
{total, vnodeq_atom(Module, <<"q_total">>)}]}]),
histogram, [mean,median,min,max,total]},
[{aliases, [{mean , vnodeq_atom(Module, <<"q_mean">>)},
{median, vnodeq_atom(Module, <<"q_median">>)},
{min , vnodeq_atom(Module, <<"q_min">>)},
{max , vnodeq_atom(Module, <<"q_max">>)},
{total , vnodeq_atom(Module, <<"q_total">>)}]}
]),
exometer:re_register(
[P, ?APP, vnodeq, Module, Index],
function, [{ arg, {erlang, process_info, [Pid, message_queue_len],
Expand Down

5 comments on commit 6c3def3

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from jburwell
at 6c3def3

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging basho/riak_core/uw-riak-1294 = 6c3def3 into borshop-integration-665-uw-riak-1294

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

basho/riak_core/uw-riak-1294 = 6c3def3 merged ok, testing candidate = 24aad09

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding 2.0 to borshop-integration-665-uw-riak-1294 = 24aad09

Please sign in to comment.