view src/app/components/jvm-info/byteman/en.locale.yaml @ 223:57a4676a9343

Use JVM mainClass in byteman rule template Reviewed-by: jkang Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-September/025159.html
author Andrew Azores <aazores@redhat.com>
date Fri, 22 Sep 2017 14:33:18 -0400
parents 0e10eacbeeb7
children 6568fdab115d
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 {{mainClass}}
    CLASS {{mainClass}}
    METHOD main
    HELPER org.jboss.byteman.thermostat.helper.ThermostatHelper
    AT ENTRY
    IF true
    DO
    send("foo-marker", "action", "{{mainClass}}.main() called");
    ENDRULE