Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A4580200C1E for ; Fri, 13 Jan 2017 00:25:35 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id A3139160B40; Thu, 12 Jan 2017 23:25:35 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 03877160B4C for ; Fri, 13 Jan 2017 00:25:34 +0100 (CET) Received: (qmail 43934 invoked by uid 500); 12 Jan 2017 23:25:34 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 43845 invoked by uid 99); 12 Jan 2017 23:25:34 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Jan 2017 23:25:34 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id F389ADFDD3; Thu, 12 Jan 2017 23:25:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: klund@apache.org To: commits@geode.apache.org Date: Thu, 12 Jan 2017 23:25:34 -0000 Message-Id: In-Reply-To: <541115c96522456ca545a3d15bbb68f0@git.apache.org> References: <541115c96522456ca545a3d15bbb68f0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [02/17] geode git commit: GEODE-2049: Replaced unit of measure for all of the tcpfinalCheck statistics from currently "nanoseconds" to be "messages". This closes #332 archived-at: Thu, 12 Jan 2017 23:25:35 -0000 GEODE-2049: Replaced unit of measure for all of the tcpfinalCheck statistics from currently "nanoseconds" to be "messages". This closes #332 Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/dfb77d7e Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/dfb77d7e Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/dfb77d7e Branch: refs/heads/feature/GEODE-1930-2 Commit: dfb77d7e0d603930d910e93b48c886268b2143e3 Parents: 4339918 Author: Amey Barve Authored: Mon Jan 9 16:23:20 2017 +0530 Committer: Amey Barve Committed: Wed Jan 11 11:19:03 2017 +0530 ---------------------------------------------------------------------- .../geode/distributed/internal/DistributionStats.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/dfb77d7e/geode-core/src/main/java/org/apache/geode/distributed/internal/DistributionStats.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/distributed/internal/DistributionStats.java b/geode-core/src/main/java/org/apache/geode/distributed/internal/DistributionStats.java index a07cfa1..3419b43 100644 --- a/geode-core/src/main/java/org/apache/geode/distributed/internal/DistributionStats.java +++ b/geode-core/src/main/java/org/apache/geode/distributed/internal/DistributionStats.java @@ -726,14 +726,13 @@ public class DistributionStats implements DMStats { f.createLongCounter("finalCheckResponsesSent", finalCheckResponsesSentDesc, "messages"), f.createLongCounter("finalCheckResponsesReceived", finalCheckResponsesReceivedDesc, "messages"), - f.createLongCounter("tcpFinalCheckRequestsSent", tcpFinalCheckRequestsSentDesc, - "nanoseconds", false), + f.createLongCounter("tcpFinalCheckRequestsSent", tcpFinalCheckRequestsSentDesc, "messages"), f.createLongCounter("tcpFinalCheckRequestsReceived", tcpFinalCheckRequestsReceivedDesc, - "nanoseconds", false), + "messages"), f.createLongCounter("tcpFinalCheckResponsesSent", tcpFinalCheckResponsesSentDesc, - "nanoseconds", false), + "messages"), f.createLongCounter("tcpFinalCheckResponsesReceived", tcpFinalCheckResponsesReceivedDesc, - "nanoseconds", false), + "messages"), f.createLongCounter("udpFinalCheckRequestsSent", udpFinalCheckRequestsSentDesc, "messages"), f.createLongCounter("udpFinalCheckRequestsReceived", udpFinalCheckRequestsReceivedDesc, "messages"),