mirror of https://github.com/mchr3k/org.intrace
parent
f0a6442beb
commit
37e14ce43a
24
README.txt
24
README.txt
|
|
@ -1,23 +1,9 @@
|
||||||
org.intrace description:
|
== org.intrace Repository ==
|
||||||
|
|
||||||
-- Packages --
|
=> org.intrace - Main InTrace Project
|
||||||
agent : Instrumenting Agent including IP Server
|
|
||||||
output : Instrumentation output handlers
|
|
||||||
output.trace : Default (and currently only) handler
|
|
||||||
|
|
||||||
client/cui/AgentLoader : Command line runtime Agent loading tool
|
=> org.intrace.agentbug - Project containing simple Agent used to illustrate bug report to Sun.
|
||||||
client/cui/TraceClient : Command line remote Agent config tool
|
|
||||||
client/gui/ : GUI remote Agent config tool/network trace viewer
|
|
||||||
|
|
||||||
-- Functional Pieces --
|
=> org.intrace.agentloader - Project containing command line agent loader for loading an agent into a running process.
|
||||||
1. Instrumenting Agent
|
|
||||||
2. Runtime Agent Loader
|
|
||||||
3. CUI Remote Agent Config Tool
|
|
||||||
4. GUI Remote Agent Config Tool/Network Trace Viewer
|
|
||||||
|
|
||||||
Note to self - Git Commands:
|
=> org.intrace.test - Dumping ground for toy classes used in manual testing.
|
||||||
|
|
||||||
git init
|
|
||||||
git remote add origin git@github.com:mchr3k/org.intrace.git
|
|
||||||
git push origin master
|
|
||||||
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
package gb.testinstru;
|
package org.intrace.agentbug.agent;
|
||||||
|
|
||||||
import java.lang.instrument.Instrumentation;
|
import java.lang.instrument.Instrumentation;
|
||||||
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
package gb.test;
|
package org.intrace.agentbug.app;
|
||||||
|
|
||||||
public class TestApplication
|
public class TestApplication
|
||||||
{
|
{
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
package mchr;
|
package org.intrace.sandbox;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
package mchr;
|
package org.intrace.sandbox;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
|
@ -1 +1,26 @@
|
||||||
test
|
org.intrace description:
|
||||||
|
|
||||||
|
-- Functional Pieces --
|
||||||
|
1. Instrumenting Agent
|
||||||
|
2. CUI Remote Agent Config Tool
|
||||||
|
3. GUI Remote Agent Config Tool/Network Trace Viewer
|
||||||
|
4. Common Output Classes
|
||||||
|
5. Instrumentation Handlers
|
||||||
|
|
||||||
|
|
||||||
|
-- Packages (org.intrace.) --
|
||||||
|
agent : Instrumenting Agent
|
||||||
|
agent.server : IP Server for controlling the Agent, Output and Instrumentation Handlers
|
||||||
|
|
||||||
|
client.cui : Command Line Agent Config Client
|
||||||
|
client.gui : GUI Agent Config Client + Live Trace/Callers viewer
|
||||||
|
client.gui.helper : Helper classes used by the GUI interface
|
||||||
|
|
||||||
|
output : Common Output Classes
|
||||||
|
output.trace : Trace Instrumentation Handler
|
||||||
|
output.callers : Callers Analysis Instrumentation Handler
|
||||||
|
|
||||||
|
shared : String constants used by both the Agent Server and the Client
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue