Package com.intergral.deep.agent
Class Agent
- java.lang.Object
-
- com.intergral.deep.agent.Agent
-
public final class Agent extends Object
This is the main entry point for the Deep agent.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
agentmain(String arg, Instrumentation inst)
This is called when the agent is dynamically attached to the VM.static void
premain(String arg, Instrumentation inst)
This is called when the agent is attached from the CLI.static void
startNv(Map<String,String> args, Instrumentation inst)
A common start for NV.
-
-
-
Method Detail
-
agentmain
public static void agentmain(String arg, Instrumentation inst)
This is called when the agent is dynamically attached to the VM.- Parameters:
arg
- the agent argsinst
- a system instrumentation
-
premain
public static void premain(String arg, Instrumentation inst)
This is called when the agent is attached from the CLI.- Parameters:
arg
- the agent argsinst
- a system instrumentation
-
startNv
public static void startNv(Map<String,String> args, Instrumentation inst)
A common start for NV.- Parameters:
args
- the NV argsinst
- a system instrumentation
-
-