Return-Path: X-Original-To: apmail-cxf-issues-archive@www.apache.org Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1C215186CC for ; Thu, 13 Aug 2015 16:52:46 +0000 (UTC) Received: (qmail 78616 invoked by uid 500); 13 Aug 2015 16:52:45 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 78505 invoked by uid 500); 13 Aug 2015 16:52:45 -0000 Mailing-List: contact issues-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 issues@cxf.apache.org Received: (qmail 78300 invoked by uid 99); 13 Aug 2015 16:52:45 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Aug 2015 16:52:45 +0000 Date: Thu, 13 Aug 2015 16:52:45 +0000 (UTC) From: "Edwin (JIRA)" To: issues@cxf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CXF-6539) Performance counters through MBeans doesn't work. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Edwin created CXF-6539: -------------------------- Summary: Performance counters through MBeans doesn't work. Key: CXF-6539 URL: https://issues.apache.org/jira/browse/CXF-6539 Project: CXF Issue Type: Bug Components: Management Affects Versions: 3.1.1 Environment: JDK 1.8 Reporter: Edwin We are creating the InstrumentationManager according to documentation and this all works fine in CXF 2.7.12. {code} ... {code} But after a little debugging, I noticed that in CXF 3.1.1 the 'register' method in InstrumentationManagerImp is deprecated and the code has been moved to the end of the 'init' method though there is a difference. CXF 2.7.12 had: {code} bus.setExtension(this, InstrumentationManager.class); {code} but CXF 3.1.1 has: {code} this.bus.setExtension(this, BusLifeCycleListener.class); {code} Could this be the cause that performance counters through MBeans aren't working. Or do we need to change the configuration? -- This message was sent by Atlassian JIRA (v6.3.4#6332)