view src/app/components/jvm-info/byteman/en.locale.yaml @ 222:0e10eacbeeb7

Add byteman subview to jvm-info Reviewed-by: jerboaa Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-September/025146.html
author Andrew Azores <aazores@redhat.com>
date Fri, 22 Sep 2017 07:51:59 -0400
parents
children 57a4676a9343
line wrap: on
line source

byteman:
  LOCAL_RULE_LABEL: Local Rule
  REMOTE_RULE_LABEL: Injected Rule
  NO_RULES_LABEL: '<no-rules-loaded>'
  PUSH_BTN_LABEL: '&gt;'
  PULL_BTN_LABEL: '&lt;'
  UNLOAD_BTN_LABEL: Unload Rule
  GENERATE_RULE_BTN_LABEL: Generate Rule Template
  RULE_TEMPLATE: |
    RULE Thermostat byteman template rule for com.redhat.thermostat.main.Thermostat
    CLASS com.redhat.thermostat.main.Thermostat
    METHOD main
    HELPER org.jboss.byteman.thermostat.helper.ThermostatHelper
    AT ENTRY
    IF true
    DO
    send("foo-marker", "action", "com.redhat.thermostat.main.Thermostat.main() called");
    ENDRULE