-
Notifications
You must be signed in to change notification settings - Fork 325
Description
Problem: During issues, we need to take thread dumps. Most server products shop with their own JRE, and installation of JDK on servers in production is discouraged. Also finding the exact version and exact vendor is difficult. Jstack will not connect with a different version and even if you find the same version, it doesn't exactly work right, if you don't have the same vendor.
Describe the solution you'd like
Add ability to take thread dumps at intervals and write them to files with details like hostname and time as part of the file name.
Describe alternatives you've considered
use of jstack and scripting which isn't working very well. Seems like getting thread dumps is a lot easier with JMX for reason mentioned above.
Additional context
Let me know if you need additional information.