We are running some heavy deployments on weblogic setup and it takes around an hour. During that time, we want to take a memory snapshots/heap dumps to see how much headroom we have wrt memory to avoid crash. Is there any optional jvm arg that we can provide while starting the server which will do the job? I checked below link but nothing is fitting the requirement - http://docs.oracle.com/cd/E15289_01/doc.40/e15062/optionxx.htm
How to take memory snapshots at regular interval for jrockit?
224 Views Asked by dganesh2002 At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in HEAP-MEMORY
- C++ Pointer Object Location
- Interpretation of java hprof histogram
- Application Verifier limits Heap Allocations by default?
- How do I release images and avoid outOfMemory exc-n when navigating back and forth between activities[android]
- Is an attempt to modify a const_cast-ed, but dynamically allocated constant object still undefined behavior?
- Constant container (map) - eliminate heap allocation
- OutOfMemoryError: Java heap space MultipartRequest
- Predictionio evaluation fails with empty.maxBy exception and training with java.lang.OutOfMemoryError
- Two versions of the same java program out of which one is throwing Out of Memory Error and other one is not. Not able to get to know why?
- Heap - How free bytes are tracked?
- AngularJs $scope.$destroy(). How to use?
- Segmentation fault - Invalid free unresolved - C
- Query, if a heap is executable
- WA_DeleteOnClose delete all members?
- How to find the default Java 1.4.2 heap size in AIX
Related Questions in WEBLOGIC11G
- Oracle Weblogic server - get logs of requests served
- WebLogic Console - No application files exist when redeploying application
- Integrated weblogic server is not running
- How can I find the root cause of my never ending maven dependency hell?
- Weblogic Domain Configuration Wizard replaces forward slash (/) with back-slash (\) while creating domain
- Weblogic jms distributed topic
- do we need the firewall port open from App server to Webserver
- Exhausted ResultSet Exception while using two phase commit in Weblogic
- Stage managed node
- How can I solve error 403 (Forbidden) after deploying ADF Application without any security configuration?
- How to take memory snapshots at regular interval for jrockit?
- Reflection much slower than normal
- Trinidad API usage caused an exception on weblogic managed server in my case
- javax.jms.InvalidSelectorException when calling javax.jms.QueueSession.createBrowser() in weblogic12c
- Validate user entered weblogic location
Related Questions in HEAP-DUMP
- Error Opening heap dump
- Java heap dump analysis for lambda expressions
- java - jmap crashes with "can not get class data for heapdump in java 8
- Convert .dmp file to .hprof file
- How to visualize heapdump?
- Heap Dump w/ high memory allocation in Android Studio never finishes
- VisualVM 1.3.8 OQL - TypeError: [RegExp /java.lang./] is not a function
- Node.js - Large number of post request to another server causes memory leak
- Does not Java create heapdump when native allocation fails
- heroku R14 errors with java Play 1 app running on OpenJDK 1.8
- Heap dump in visualvm glassfish
- Java Heap and Stack
- Java heap dump - java.lang.Thread is the top component
- How to take memory snapshots at regular interval for jrockit?
- Process hung debug C / C++
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If acceptable to drive the snapshots from the outside then you can use jrcmd to send commands to your JVM.
To get the PID use
and then you can use
See http://docs.oracle.com/cd/E15289_01/doc.40/e15062/diagnostic.htm#BABIACCC for hrpofdump and http://docs.oracle.com/cd/E15289_01/doc.40/e15061/ctrlbreakhndlr.htm#i1001760 for jrcmd.