You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2016/01/22 04:23:50 UTC

[02/10] trafficserver git commit: TS-4099: missing proxy.process.http.transaction_counts.errors.errors

TS-4099: missing proxy.process.http.transaction_counts.errors.errors

proxy.process.http.transaction_counts.errors.errors doesn't exist,
so replace it with proxy.process.http.transaction_counts.errors.other
where applicable.


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/b8539d3c
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/b8539d3c
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/b8539d3c

Branch: refs/heads/master
Commit: b8539d3cbcc99d2f87c0ee6ece00028096d9df07
Parents: 1a59001
Author: James Peach <jp...@apache.org>
Authored: Sun Dec 27 17:02:13 2015 -0800
Committer: James Peach <jp...@apache.org>
Committed: Thu Jan 21 18:52:18 2016 -0800

----------------------------------------------------------------------
 proxy/config/metrics.config.default | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/b8539d3c/proxy/config/metrics.config.default
----------------------------------------------------------------------
diff --git a/proxy/config/metrics.config.default b/proxy/config/metrics.config.default
index 0eec83a..77a2bd2 100644
--- a/proxy/config/metrics.config.default
+++ b/proxy/config/metrics.config.default
@@ -870,9 +870,9 @@ integer 'proxy.node.http.transaction_counts_avg_10s.errors.empty_hangups' [[
   end)
 ]]
 
-integer 'proxy.node.http.transaction_counts_avg_10s.errors.errors' [[
+integer 'proxy.node.http.transaction_counts_avg_10s.errors.other' [[
   return interval_delta_of_10s(..., function()
-    return proxy.process.http.transaction_counts.errors.errors
+    return proxy.process.http.transaction_counts.errors.other
   end)
 ]]