aboutsummaryrefslogtreecommitdiffstats
path: root/lib/diameter/src/base/diameter_watchdog.erl
diff options
context:
space:
mode:
authorAnders Svensson <[email protected]>2014-05-21 01:07:00 +0200
committerAnders Svensson <[email protected]>2014-05-22 08:37:50 +0200
commit6642bfc89b9a9863ea1f4864d28b96b075beedd8 (patch)
tree5a91f55687908ec8252a44c46705ab73c7ea2ad4 /lib/diameter/src/base/diameter_watchdog.erl
parent90cd10632ff2bcc6c541ac544728f18097290301 (diff)
downloadotp-6642bfc89b9a9863ea1f4864d28b96b075beedd8.tar.gz
otp-6642bfc89b9a9863ea1f4864d28b96b075beedd8.tar.bz2
otp-6642bfc89b9a9863ea1f4864d28b96b075beedd8.zip
Count decode errors in incoming requests
Errors were only counted in incoming answers. Counters are keyed on tuples of the same form: {{ApplicationId, CommandCode, Rbit}, recv, error}
Diffstat (limited to 'lib/diameter/src/base/diameter_watchdog.erl')
-rw-r--r--lib/diameter/src/base/diameter_watchdog.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/diameter/src/base/diameter_watchdog.erl b/lib/diameter/src/base/diameter_watchdog.erl
index c17a3bde5d..710017e62f 100644
--- a/lib/diameter/src/base/diameter_watchdog.erl
+++ b/lib/diameter/src/base/diameter_watchdog.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2010-2013. All Rights Reserved.
+%% Copyright Ericsson AB 2010-2014. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -559,6 +559,7 @@ recv(Name, Pkt, S) ->
rcv('DWR', Pkt, #watchdog{transport = TPid,
dictionary = Dict0}) ->
+ diameter_traffic:incr_R(recv, diameter_codec:decode(Pkt), TPid),
EPkt = encode(dwa, Dict0, Pkt),
diameter_traffic:incr_A(send, EPkt, TPid, Dict0),
send(TPid, {send, EPkt}),