Skip to content

Java Agent to trigger dumps based on Memory usage threshold

Notifications You must be signed in to change notification settings

Param-S/JavaAgents

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Agent to trigger dumps when usage of memory(heap) reaches threshold

To use agent

java -javaagent:gcDumpAgent.jar="-t 80 -d java,system" -Xmx200m com.prakash.java.agent.test.AgentTest

###Where -t -> Threshold,

-d -> Dump option

###Example

To generate heap, system dumps when the heap usage reaches 90%, use the following option

<SDK_PATH>/bin/java -javaagent:gcDumpAgent.jar="-t 90 -d heap,system"

Note: The project is not yet completed

About

Java Agent to trigger dumps based on Memory usage threshold

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 91.3%
  • Shell 8.7%