-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RANGER-2699 : JVM metrics for Ranger usersync and Ranger tagsync
Signed-off-by: Pradeep <pradeep@apache.org>
- Loading branch information
1 parent
65b4cec
commit 1eec98e
Showing
14 changed files
with
632 additions
and
18 deletions.
There are no files selected for viewing
189 changes: 189 additions & 0 deletions
189
agents-common/src/main/java/org/apache/ranger/plugin/util/RangerMetricsUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
/* | ||
* 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.ranger.plugin.util; | ||
|
||
import org.apache.commons.lang.StringUtils; | ||
import org.apache.log4j.Logger; | ||
import org.apache.ranger.plugin.model.RangerMetrics; | ||
|
||
import com.google.gson.Gson; | ||
|
||
import java.io.File; | ||
import java.io.FileWriter; | ||
import java.lang.management.ManagementFactory; | ||
import java.lang.management.MemoryMXBean; | ||
import java.lang.management.OperatingSystemMXBean; | ||
import java.lang.management.RuntimeMXBean; | ||
import java.util.Arrays; | ||
import java.util.LinkedHashMap; | ||
import java.util.Map; | ||
import java.lang.management.MemoryPoolMXBean; | ||
import java.lang.management.MemoryType; | ||
import java.lang.management.MemoryUsage; | ||
|
||
/** | ||
* Connect Worker system and runtime information. | ||
*/ | ||
public class RangerMetricsUtil { | ||
|
||
private static final Logger LOG = Logger.getLogger(RangerMetricsUtil.class); | ||
private static final OperatingSystemMXBean OS; | ||
private static final MemoryMXBean MEM_BEAN; | ||
public static final String NL = System.getProperty("line.separator"); | ||
|
||
private static final RuntimeMXBean RUNTIME = ManagementFactory.getRuntimeMXBean(); | ||
private static final String JVM_MACHINE_ACTUAL_NAME = RUNTIME.getVmName(); | ||
private static final String VERSION = RUNTIME.getVmVersion(); | ||
private static final String JVM_MACHINE_REPRESENTATION_NAME = RUNTIME.getName(); | ||
private static final long UP_TIME_OF_JVM = RUNTIME.getUptime(); | ||
private static final String JVM_VENDOR_NAME = RUNTIME.getVmVendor(); | ||
|
||
|
||
static { | ||
OS = ManagementFactory.getOperatingSystemMXBean(); | ||
MEM_BEAN = ManagementFactory.getMemoryMXBean(); | ||
} | ||
|
||
public Map<String, Object> getValues() { | ||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("==> RangerMetricsUtil.getValues()"); | ||
} | ||
|
||
Map<String, Object> values = new LinkedHashMap<>(); | ||
values.put("os.spec", StringUtils.join(Arrays.asList(addSystemInfo()), ", ")); | ||
values.put("os.vcpus", String.valueOf(OS.getAvailableProcessors())); | ||
values.put("memory", addMemoryDetails()); | ||
|
||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("<== RangerMetricsUtil.getValues()" + values); | ||
} | ||
|
||
return values; | ||
} | ||
|
||
/** | ||
* collect the pool division of java | ||
*/ | ||
protected Map<String, Object> getPoolDivision() { | ||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("==> RangerMetricsUtil.getPoolDivision()"); | ||
} | ||
|
||
Map<String, Object> poolDivisionValues = new LinkedHashMap<>(); | ||
for (MemoryPoolMXBean mpBean : ManagementFactory.getMemoryPoolMXBeans()) { | ||
if (mpBean.getType() == MemoryType.HEAP) { | ||
poolDivisionValues.put(mpBean.getName(), mpBean.getUsage()); | ||
} | ||
} | ||
|
||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("<== RangerMetricsUtil.getPoolDivision()" + poolDivisionValues); | ||
} | ||
|
||
return poolDivisionValues; | ||
} | ||
|
||
/** | ||
* Add memory details | ||
*/ | ||
protected Map<String, Object> addMemoryDetails() { | ||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("==> RangerMetricsUtil.addMemoryDetails()"); | ||
} | ||
|
||
Map<String, Object> memory = new LinkedHashMap<>(); | ||
MemoryUsage memHeapUsage = MEM_BEAN.getHeapMemoryUsage(); | ||
MemoryUsage nonHeapUsage = MEM_BEAN.getNonHeapMemoryUsage(); | ||
memory.put("heapInit", String.valueOf(memHeapUsage.getInit())); | ||
memory.put("heapMax", String.valueOf(memHeapUsage.getMax())); | ||
memory.put("heapCommitted", String.valueOf(memHeapUsage.getCommitted())); | ||
memory.put("heapUsed", String.valueOf(memHeapUsage.getUsed())); | ||
memory.put("nonHeapInit", String.valueOf(nonHeapUsage.getInit())); | ||
memory.put("nonHeapMax", String.valueOf(nonHeapUsage.getMax())); | ||
memory.put("nonHeapCommitted", String.valueOf(nonHeapUsage.getCommitted())); | ||
memory.put("nonHeapUsed", String.valueOf(nonHeapUsage.getUsed())); | ||
memory.put("memory_pool_usages", getPoolDivision()); | ||
|
||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("<== RangerMetricsUtil.addMemoryDetails()" + memory); | ||
} | ||
|
||
return memory; | ||
} | ||
|
||
/** | ||
* Collect system information. | ||
*/ | ||
protected String[] addSystemInfo() { | ||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("==> RangerMetricsUtil.addSystemInfo()"); | ||
} | ||
|
||
String[] osInfo = { OS.getName(), OS.getArch(), OS.getVersion() }; | ||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("<== RangerMetricsUtil.addSystemInfo()" + osInfo); | ||
} | ||
|
||
return osInfo; | ||
} | ||
|
||
public RangerMetrics getVMStatus() { | ||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("==> RangerMetricsUtil.getVMStatus()"); | ||
} | ||
|
||
Map<String, Object> jvm = new LinkedHashMap<>(); | ||
Map<String, Object> vmDetails = new LinkedHashMap<>(); | ||
vmDetails.put("JVM Machine Actual Name", JVM_MACHINE_ACTUAL_NAME); | ||
vmDetails.put("version", VERSION); | ||
vmDetails.put("JVM Machine Representation Name", JVM_MACHINE_REPRESENTATION_NAME); | ||
vmDetails.put("Up time of JVM", UP_TIME_OF_JVM); | ||
vmDetails.put("JVM Vendor Name", JVM_VENDOR_NAME); | ||
vmDetails.putAll(getValues()); | ||
jvm.put("jvm", vmDetails); | ||
|
||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("<== RangerMetricsUtil.getVMStatus() " + jvm); | ||
} | ||
|
||
return new RangerMetrics(jvm); | ||
} | ||
|
||
public void writeMetricsToFile(File filePath) throws Throwable { | ||
|
||
RangerMetrics rangerMetrics = null; | ||
rangerMetrics = getVMStatus(); | ||
if (null == rangerMetrics || null == filePath) { | ||
LOG.debug("RangerMetrics or filePath can not be null)"); | ||
return; | ||
} | ||
if (LOG.isDebugEnabled()) { | ||
LOG.debug("==> RangerMetricsUtil.writeMetricsToFIle() for path: "+ filePath); | ||
} | ||
Gson gson = new Gson(); | ||
try (FileWriter file = new FileWriter(filePath)) { | ||
gson.toJson(rangerMetrics, file); | ||
file.flush(); | ||
} catch (Exception e ) { | ||
LOG.error("RangerMetricsUtil.writeMetricsToFile() got an error",e); | ||
throw e; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.