mchr3k / org.intrace

Java tracing agent and live trace client
http://mchr3k.github.com/org.intrace/
73 stars 18 forks source link

Feature request: instrument multiple class names from paste buffer #21

Closed eostermueller closed 12 years ago

eostermueller commented 12 years ago

I often keep a text list of several (perhaps 20) class names that need to be instrumented for one specific purpose -- say tracing the response time of all requests in a particular SOA.

I'd like to "Ctrl-V" this list of 20 class names into the InTrace "Classes to Instrument" dialog. Seems reasonable to use some kind of a CR/LF as a delimiter. The text box currently doesn't accept multi-line input.

I tried using the "pipe" character to say "this class OR that class OR the other class" (this|that|other) but the text input box wouldn't accept the |.

Thanks,

--Erik

mchr3k commented 12 years ago

I've just checked in a fix which will make this work for the class entries.The textbox will allow you to enter a|b|c etc and then when you press add this will be parsed as a,b,c. I will make a release including this fix soon.