ConfigConfig config = AMXUtil.getConfig(((String)handlerCtx.getInputValue("ConfigName")));
try{
JavaConfig javaConfig = config.getJavaConfig();
if(javaConfig.getProfilerConfig() != null) {
ProfilerConfig profilerConfig = javaConfig.getProfilerConfig();
String name = profilerConfig.getName();
boolean enabled = profilerConfig.getEnabled();
String classPath = profilerConfig.getClasspath();
String nativeLibrary = profilerConfig.getNativeLibraryPath();
handlerCtx.setOutputValue("Classpath", classPath);
handlerCtx.setOutputValue("NativeLibrary", nativeLibrary);
handlerCtx.setOutputValue("ProfilerName", name);
handlerCtx.setOutputValue("ProfilerEnabled", enabled);
}