[
https://issues.apache.org/jira/browse/LENS-144?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14256732#comment-14256732
]
Raju Bairishetti commented on LENS-144:
---------------------------------------
All tests are passed with the new patch
{noframe}
[INFO] Reactor Summary:
[INFO]
[INFO] Lens Checkstyle Rules ............................. SUCCESS [1.163s]
[INFO] Lens .............................................. SUCCESS [2.856s]
[INFO] Lens API .......................................... SUCCESS [5.846s]
[INFO] Lens API for server and extensions ................ SUCCESS [5.595s]
[INFO] Lens Cube ......................................... SUCCESS [6:55.433s]
[INFO] Lens DB storage ................................... SUCCESS [13.259s]
[INFO] Lens Query Library ................................ SUCCESS [6.438s]
[INFO] Lens Hive Driver .................................. SUCCESS [2:59.399s]
[INFO] Lens Driver for Cloudera Impala ................... SUCCESS [3.545s]
[INFO] Lens Driver for JDBC .............................. SUCCESS [28.733s]
[INFO] Lens Server ....................................... SUCCESS [4:50.475s]
[INFO] Lens client ....................................... SUCCESS [23.176s]
[INFO] Lens CLI .......................................... SUCCESS [2:05.647s]
[INFO] Lens Examples ..................................... SUCCESS [0.842s]
[INFO] Lens Distribution ................................. SUCCESS [5.229s]
[INFO] Lens Client Distribution .......................... SUCCESS [5.964s]
[INFO] Lens ML Lib ....................................... SUCCESS [47.876s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 19:22.496s
[INFO] Finished at: Tue Dec 23 08:20:32 UTC 2014
[INFO] Final Memory: 115M/1418M
[INFO] ------------------------------------------------------------------------
{noframe}
> LENS does not emit stats to ganglia
> -----------------------------------
>
> Key: LENS-144
> URL: https://issues.apache.org/jira/browse/LENS-144
> Project: Apache Lens
> Issue Type: Bug
> Components: server
> Reporter: Raju Bairishetti
> Assignee: Raju Bairishetti
> Priority: Minor
> Fix For: 2.0
>
>
> Currently, Lens server emits stats to console or ganglia based on the
> provided configuration. But currently lens server is not emitting stats to
> ganglia because it is not reading the configuration.
> {code:title=code snippet|borderStyle=solid}
> if (hiveConf.getBoolean(LensConfConstants.ENABLE_CONSOLE_METRICS, false)) {
> // ganglia reporter initialization
> ...
> }
> {code}
> instead it should be
> {code:title=Fix |borderStyle=solid}
> if (hiveConf.getBoolean(LensConfConstants.ENABLE_GANGLIA_METRICS, false)) {
> // ganglia reporter initialization
> ...
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)