blob: 9944bad897a474decc842fe8392be156fa87c241 [file] [log] [blame]
/*
* 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.rest;
import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;
import java.util.LinkedHashMap;
import java.util.Map;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import org.apache.log4j.Logger;
import org.apache.ranger.plugin.model.RangerMetrics;
import org.apache.ranger.util.RangerMetricsUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
@Path("metrics")
@Component
@Scope("request")
@Transactional(propagation = Propagation.REQUIRES_NEW)
public class MetricsREST {
private static final Logger LOG = Logger.getLogger(MetricsREST.class);
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();
@Autowired
RangerMetricsUtil jvmMetricUtil;
@GET
@Path("/status")
@Produces({ "application/json", "application/xml" })
public RangerMetrics getStatus() {
if (LOG.isDebugEnabled()) {
LOG.debug("==> MetricsREST.getStatus()");
}
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(jvmMetricUtil.getValues());
jvm.put("jvm",vmDetails);
if (LOG.isDebugEnabled()) {
LOG.debug("<== MetricsREST.getStatus() " + jvm);
}
return new RangerMetrics(jvm);
}
}