Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 23C1C17797 for ; Fri, 20 Mar 2015 18:17:47 +0000 (UTC) Received: (qmail 79281 invoked by uid 500); 20 Mar 2015 18:17:34 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 79139 invoked by uid 500); 20 Mar 2015 18:17:34 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 79071 invoked by uid 99); 20 Mar 2015 18:17: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; Fri, 20 Mar 2015 18:17:34 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 065F7E112F; Fri, 20 Mar 2015 18:17:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dkulp@apache.org To: commits@cxf.apache.org Date: Fri, 20 Mar 2015 18:17:34 -0000 Message-Id: In-Reply-To: <9c6d3c6ecd824f75bb5c6f3eff2305cd@git.apache.org> References: <9c6d3c6ecd824f75bb5c6f3eff2305cd@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/4] cxf git commit: Move the metrics stuff into it's own "feature" that can be activated as a feature http://git-wip-us.apache.org/repos/asf/cxf/blob/fd5abbd3/rt/management/src/main/java/org/apache/cxf/management/codahale/MetricsContext.java ---------------------------------------------------------------------- diff --git a/rt/management/src/main/java/org/apache/cxf/management/codahale/MetricsContext.java b/rt/management/src/main/java/org/apache/cxf/management/codahale/MetricsContext.java deleted file mode 100644 index f77bc0a..0000000 --- a/rt/management/src/main/java/org/apache/cxf/management/codahale/MetricsContext.java +++ /dev/null @@ -1,47 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.apache.cxf.management.codahale; - - -import org.apache.cxf.message.FaultMode; - - -/** - * Class to hold all the various metric pieces for a given context (Endpoint, Customer, Operation, etc...) - */ -public interface MetricsContext { - - /** - * Will be called at the start of invoke (or when added to a started MessageMetrics). This is - * when the metrics should increment "inFlight" counts and other stats. There is no need to - * record a "start time" as the invoke time will be passed into the stop method. - */ - void start(); - - /** - * Called when the invocation is complete. - * - * @param timeInNS - * @param inSize - * @param outSize - * @param fm - */ - void stop(long timeInNS, long inSize, long outSize, FaultMode fm); -} http://git-wip-us.apache.org/repos/asf/cxf/blob/fd5abbd3/rt/pom.xml ---------------------------------------------------------------------- diff --git a/rt/pom.xml b/rt/pom.xml index 7e8555e..fd9da64 100644 --- a/rt/pom.xml +++ b/rt/pom.xml @@ -40,6 +40,7 @@ bindings features/clustering features/logging + features/metrics features/throttling frontend/simple frontend/jaxws