< prev index next >

core/org.openjdk.jmc.flightrecorder.rules/src/main/java/org/openjdk/jmc/flightrecorder/rules/util/JfrRuleTopics.java

Print this page

        

@@ -33,13 +33,15 @@
 package org.openjdk.jmc.flightrecorder.rules.util;
 
 /**
  * A number of constant strings that are used as topics by JMC rules and pages. These are only used
  * as a convenience, you are by no means limited to these strings.
+ * <p>
+ * NOTE: If we want the word TOPIC in these constants, it should be the first word. Let's consider
+ * this for 8.0.0. See JMC-6487.
  */
 public final class JfrRuleTopics {
-
         public static final String CLASS_LOADING_TOPIC = "classloading"; //$NON-NLS-1$
         public static final String CODE_CACHE_TOPIC = "code_cache"; //$NON-NLS-1$
         public static final String COMPILATIONS_TOPIC = "compilations"; //$NON-NLS-1$
         public static final String ENVIRONMENT_VARIABLES_TOPIC = "environment_variables"; //$NON-NLS-1$
         public static final String EXCEPTIONS_TOPIC = "exceptions"; //$NON-NLS-1$

@@ -59,7 +61,10 @@
         public static final String RECORDING_TOPIC = "recording"; //$NON-NLS-1$
         public static final String THREAD_DUMPS_TOPIC = "thread_dumps"; //$NON-NLS-1$
         public static final String THREADS_TOPIC = "threads"; //$NON-NLS-1$
         public static final String VM_OPERATIONS_TOPIC = "vm_operations"; //$NON-NLS-1$
         public static final String MEMORY_LEAK_TOPIC = "memoryleak"; //$NON-NLS-1$
+        public static final String BIASED_LOCKING_TOPIC = "biased_locking"; //$NON-NLS-1$
+        public static final String NATIVE_LIBRARY_TOPIC = "native_library"; //$NON-NLS-1$
+        @Deprecated
         public static final String BIASED_LOCKING = "biased_locking"; //$NON-NLS-1$
 }
< prev index next >