Return-Path: X-Original-To: apmail-hbase-user-archive@www.apache.org Delivered-To: apmail-hbase-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 135EF101D7 for ; Wed, 11 Jun 2014 16:16:07 +0000 (UTC) Received: (qmail 28857 invoked by uid 500); 11 Jun 2014 16:16:05 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 28792 invoked by uid 500); 11 Jun 2014 16:16:05 -0000 Mailing-List: contact user-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@hbase.apache.org Delivered-To: mailing list user@hbase.apache.org Received: (qmail 28781 invoked by uid 99); 11 Jun 2014 16:16:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jun 2014 16:16:05 +0000 X-ASF-Spam-Status: No, hits=3.9 required=5.0 tests=HTML_MESSAGE,MANY_SPAN_IN_TEXT,RCVD_IN_DNSWL_LOW,SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of boylook@gmail.com designates 209.85.215.53 as permitted sender) Received: from [209.85.215.53] (HELO mail-la0-f53.google.com) (209.85.215.53) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jun 2014 16:15:59 +0000 Received: by mail-la0-f53.google.com with SMTP id ty20so5037422lab.12 for ; Wed, 11 Jun 2014 09:15:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=MW1j1Umv/3wtPrb3BZOnY5n3qF0Go3YnmyYbwe28ujM=; b=MWepKlmDNSN4QQFeV4VU/BgF5Tlc9LcYjboTi1IQhdSJs6XcsgdoF4PMJt3C865CtR xkCOCOibsPPDM2Khw6pTWKT3xI65FQi8WIf3bOHngzOxBrMJCLL2SGfU6d757Vn0QlWo zBnSI7iO4rMsrH9oYjYfUibxPg5IQIRbbSuW9IwIsyEzPeIyDrDowFROs9mdsZDYB1nc JxLEVZb6F7ARncqXiC3Y9qtToFaIkjBKIKT6OxY47QdhqGk42QhgVwmz3x9Hy5KaFjMs lPaj62zWdrOdxYnGDIAZcGByDnL0t3B1JVM0Rp1Bqqe9U9sGLs2SgIIZ4Fqs7tvccl7L 9UYw== MIME-Version: 1.0 X-Received: by 10.112.35.14 with SMTP id d14mr12019444lbj.43.1402503338063; Wed, 11 Jun 2014 09:15:38 -0700 (PDT) Received: by 10.112.218.103 with HTTP; Wed, 11 Jun 2014 09:15:38 -0700 (PDT) Date: Thu, 12 Jun 2014 00:15:38 +0800 Message-ID: Subject: OperationMetrics in RegionServerDynamicStatistics No Data(0.95.15) From: =?UTF-8?B?QmksaG9uZ3l14oCUbWlrZQ==?= To: user@hbase.apache.org Content-Type: multipart/alternative; boundary=14dae93d8f5242fe8504fb91c196 X-Virus-Checked: Checked by ClamAV on apache.org --14dae93d8f5242fe8504fb91c196 Content-Type: text/plain; charset=UTF-8 Hi , I curl the http://regionserverIP:60030/jmx?qry=hadoop:service=RegionServer,name=RegionServerDynamicStatistics and filter I found that there wasn't operation metrics(get/multiput/etc.) but only readrequestcount/writerequestcount: regionserver:tbl..region.3e0f92a86d200c8d52dfb6c39906454b.readrequestcount:13581 regionserver:tbl..cf.cf.memstoreSizeMB:0 regionserver:tbl..cf.cf.storeFileSizeMB:11040 regionserver:tbl..cf.cf.staticIndexSizeKB:8901 regionserver:tbl..region.9c43cfc1bc4d81ea5b6d11d738f676f4.readrequestcount:761 regionserver:tbl..cf.cf.staticBloomSizeKB:0 regionserver:tbl..cf.cf.bt.Index.blockCacheSize:9158280 regionserver:tbl..cf.cf.storeFileCount:2 regionserver:tbl..cf.cf.blockCacheSize:336216976 regionserver:tbl..cf.cf.storeFileIndexSizeMB:0 regionserver:tbl..cf.cf.bt.Data.blockCacheSize:327058696 BUT From source code i see: many op metrics, any help will be appreciate :) * This class provides a simplified interface to expose time varying metrics * about GET/DELETE/PUT/ICV operations on a region and on Column Families. All * metrics are stored in {@link RegionMetricsStorage} and exposed to hadoop * metrics through {@link RegionServerDynamicMetrics}. */ public class OperationMetrics { private static final String DELETE_KEY = "delete_"; private static final String PUT_KEY = "put_"; private static final String GET_KEY = "get_"; private static final String ICV_KEY = "incrementColumnValue_"; private static final String INCREMENT_KEY = "increment_"; private static final String MULTIPUT_KEY = "multiput_"; private static final String MULTIDELETE_KEY = "multidelete_"; private static final String APPEND_KEY = "append_"; private static final String READREQUESTCOUNT_KEY = "readrequestcount"; private static final String WRITEREQUESTCOUNT_KEY = "writerequestcount"; --14dae93d8f5242fe8504fb91c196--