< prev index next >

test/jdk/jdk/jfr/jmx/TestStartRecording.java

Print this page
rev 51054 : imported patch 9000013-aixDisableJFR-requires.patch


  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.jmx;
  27 
  28 import java.util.List;
  29 import java.util.Map;
  30 
  31 import jdk.management.jfr.ConfigurationInfo;
  32 import jdk.management.jfr.EventTypeInfo;
  33 import jdk.management.jfr.FlightRecorderMXBean;
  34 
  35 /*
  36  * @test
  37  * @key jfr

  38  * @library /test/lib /test/jdk
  39  * @run main/othervm jdk.jfr.jmx.TestStartRecording
  40  */
  41 public class TestStartRecording {
  42     public static void main(String[] args) throws Throwable {
  43         FlightRecorderMXBean bean = JmxHelper.getFlighteRecorderMXBean();
  44         long recId = bean.newRecording();
  45         bean.startRecording(recId);
  46 
  47         // TODO: Remove debug logs
  48         List<ConfigurationInfo> configs = bean.getConfigurations();
  49         for (ConfigurationInfo config : configs) {
  50             System.out.println("config=" + config.toString());
  51         }
  52         Map<String, String> settings = bean.getRecordingSettings(recId);
  53         for (String key : settings.keySet()) {
  54             System.out.println("setting: " + key + "=" + settings.get(key));
  55         }
  56         List<EventTypeInfo> types = bean.getEventTypes();
  57         for (EventTypeInfo type : types) {


  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.jmx;
  27 
  28 import java.util.List;
  29 import java.util.Map;
  30 
  31 import jdk.management.jfr.ConfigurationInfo;
  32 import jdk.management.jfr.EventTypeInfo;
  33 import jdk.management.jfr.FlightRecorderMXBean;
  34 
  35 /**
  36  * @test
  37  * @key jfr
  38  * @requires vm.hasJFR
  39  * @library /test/lib /test/jdk
  40  * @run main/othervm jdk.jfr.jmx.TestStartRecording
  41  */
  42 public class TestStartRecording {
  43     public static void main(String[] args) throws Throwable {
  44         FlightRecorderMXBean bean = JmxHelper.getFlighteRecorderMXBean();
  45         long recId = bean.newRecording();
  46         bean.startRecording(recId);
  47 
  48         // TODO: Remove debug logs
  49         List<ConfigurationInfo> configs = bean.getConfigurations();
  50         for (ConfigurationInfo config : configs) {
  51             System.out.println("config=" + config.toString());
  52         }
  53         Map<String, String> settings = bean.getRecordingSettings(recId);
  54         for (String key : settings.keySet()) {
  55             System.out.println("setting: " + key + "=" + settings.get(key));
  56         }
  57         List<EventTypeInfo> types = bean.getEventTypes();
  58         for (EventTypeInfo type : types) {
< prev index next >