All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.intropro.prairie.unit.flume.FlumeComponent Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.intropro.prairie.unit.flume;

import org.apache.flume.instrumentation.util.JMXPollUtil;

import java.util.Map;

/**
 * Created by presidentio on 11/18/15.
 */
public class FlumeComponent {

    private String beaName;

    FlumeComponent(String beaName) {
        this.beaName = beaName;
    }

    public String getMetric(String name){
        Map bean = JMXPollUtil.getAllMBeans().get(beaName);
        if (bean != null) {
            return bean.get(name);
        }
        return null;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy